Merge branch 'master' into dev-stylelint

This commit is contained in:
Ben Word
2017-06-11 17:43:19 -06:00
committed by GitHub
9 changed files with 51 additions and 15 deletions

View File

@@ -25,7 +25,6 @@ const config = merge({
watcher: !!argv.watch,
},
watch: [],
browsers: [],
}, userConfig);
module.exports = merge(config, {

View File

@@ -142,7 +142,7 @@ let webpackConfig = {
output: { path: config.paths.dist },
context: config.paths.assets,
postcss: [
autoprefixer({ browsers: config.browsers }),
autoprefixer(),
],
},
}),

View File

@@ -13,7 +13,8 @@ module.exports = {
cssProcessor: cssnano,
cssProcessorOptions: {
discardComments: { removeAll: true },
autoprefixer: { browsers: config.browsers },
autoprefixer: {},
safe: true,
},
canPrint: true,
}),