#242: build dlls during dev server start

This commit is contained in:
SleepWalker
2016-11-29 08:12:20 +02:00
parent d4e96abbca
commit fdfb02986e
3 changed files with 24 additions and 2 deletions

21
scripts/build-dll.js Normal file
View File

@ -0,0 +1,21 @@
/* eslint-env node */
/* eslint-disable no-console */
const webpack = require('webpack');
const chalk = require('chalk');
const webpackConfig = require('../webpack.dll.config.js');
const compiler = webpack(webpackConfig);
compiler.run(function(err, stats) {
if (err) {
console.error(chalk.red(err));
process.exit(1);
}
console.error(
chalk.green('Dll was successfully build in %s ms'),
stats.endTime - stats.startTime
);
});