mirror of
https://github.com/dborth/vbagx.git
synced 2024-11-22 02:29:16 +01:00
9f3a804100
-Fix build.js files -Upgrade Cordova android and electron. -Update app package name when applicable. -Update package-*.json files.
37 lines
1.0 KiB
JavaScript
37 lines
1.0 KiB
JavaScript
const webpack = require('webpack');
|
|
//const ora = require('ora');
|
|
const {rimraf} = require('rimraf');
|
|
//const chalk = require('chalk');
|
|
const config = require('./webpack.config.js');
|
|
|
|
const env = process.env.NODE_ENV || 'development';
|
|
const target = process.env.TARGET || 'web';
|
|
const isCordova = target === 'cordova'
|
|
|
|
//const spinner = ora(env === 'production' ? 'building for production...' : 'building development version...');
|
|
//spinner.start();
|
|
|
|
rimraf(isCordova ? './cordova/www' : './www/').then(() => {
|
|
//if (removeErr) throw removeErr;
|
|
|
|
webpack(config, (err, stats) => {
|
|
if (err) throw err;
|
|
//spinner.stop();
|
|
|
|
process.stdout.write(`${stats.toString({
|
|
colors: true,
|
|
modules: false,
|
|
children: false, // If you are using ts-loader, setting this to true will make TypeScript errors show up during build.
|
|
chunks: false,
|
|
chunkModules: false,
|
|
})}\n\n`);
|
|
|
|
if (stats.hasErrors()) {
|
|
console.log('Build failed with errors.\n');
|
|
process.exit(1);
|
|
}
|
|
|
|
console.log('Build complete.\n');
|
|
});
|
|
});
|