Skip to content

Instantly share code, notes, and snippets.

@craigsimps
Created May 18, 2018 12:17
Show Gist options
  • Save craigsimps/33231ae37dcab7eb9c196048af18750e to your computer and use it in GitHub Desktop.
Save craigsimps/33231ae37dcab7eb9c196048af18750e to your computer and use it in GitHub Desktop.
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