chore(v2): generic styling improvements

This commit is contained in:
Yangshun Tay 2019-02-23 12:50:31 -08:00
parent c46a894a01
commit b33de00a32
16 changed files with 109 additions and 109 deletions

View file

@ -17,7 +17,7 @@ module.exports = function createClientConfig(props) {
const config = createBaseConfig(props);
config.entry('main').add(path.resolve(__dirname, '../core/clientEntry.js'));
// remove/clean build folders before building bundles
// Remove/clean build folders before building bundles.
const {outDir} = props;
config
.plugin('clean')
@ -33,7 +33,7 @@ module.exports = function createClientConfig(props) {
{filename: path.join(outDir, 'react-loadable.json')},
]);
// show compilation progress bar and build time
// Show compilation progress bar and build time.
const isProd = process.env.NODE_ENV === 'production';
config
.plugin('niceLog')