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', | |
sourceMap: false | |
}, | |
'woocommerce': { /* Output filename */ | |
src: 'develop/scss/woocommerce.scss', /* Input file */ | |
dest: 'css/', /* Output path. */ | |
outputStyle: 'expanded', /* Set expanded output style. */ | |
sourceMap: true | |
}, | |
'edd': { /* Output filename */ | |
src: 'develop/scss/edd.scss', /* Input file */ | |
dest: 'css/', /* Output path. */ | |
outputStyle: 'compressed', /* Set expanded output style. */ | |
sourceMap: false | |
} | |
} | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment