Created
May 18, 2018 12:17
-
-
Save craigsimps/33231ae37dcab7eb9c196048af18750e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
toolkit.extendConfig({ | |
/* ... Shortening for brevity, other config would likely be here. */ | |
css: { | |
scss: { | |
'style': { /* Override default options by adding 'style' to our config. */ | |
outputStyle: 'expanded' | |
}, | |
'woocommerce': { /* Output filename */ | |
src: 'develop/scss/woocommerce.scss', /* Input file */ | |
dest: 'css/', /* Output path. */ | |
outputStyle: 'expanded' /* Set expanded output style. */ | |
}, | |
'edd': { /* Output filename */ | |
src: 'develop/scss/edd.scss', /* Input file */ | |
dest: 'css/', /* Output path. */ | |
outputStyle: 'compressed' /* Set expanded output style. */ | |
} | |
} | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment