08335 / hivui-platform-template
hivui平台项目模板
Newer
Older
hivui-platform-template / build / run.js
caibinghong on 17 Jun 2021 add
var run = require('parallel-webpack').run,
    configPath = require.resolve('./webpack.config.js'),
    options = {
        watch: false,
        maxRetries: 1,
        stats: false, // defaults to false
        maxConcurrentWorkers: 2 // use 2 workers
    };

function notify() {
    // do things
    console.log('编译完成!')
}

run(configPath, options, notify);