You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
429 B
JavaScript

'use strict';
const config = require('../webpack.config.js');
const webpack = require('webpack');
const compiler = webpack(config);
console.log('Starting browser build...');
compiler.run((err, stats) => {
if (err) {
console.err(stats.toString());
console.err('Browser build unsuccessful.');
process.exit(1);
}
console.log(stats.toString());
console.log('Browser build successful.');
process.exit(0);
});