chore(webpack) add "\n"

This commit is contained in:
coderaiser 2017-09-19 18:54:21 +03:00
parent 0a5cf9dbc3
commit b3aba1f5e3

View file

@ -15,6 +15,7 @@ const isDev = env.NODE_ENV === 'development';
const dist = path.resolve(__dirname, 'dist');
const distDev = path.resolve(__dirname, 'dist-dev');
const devtool = isDev ? 'eval' : 'source-map';
const notEmpty = (a) => a;
const clean = (array) => array.filter(notEmpty);