UNPKG

@codercy1995/cy-cli

Version:

14 lines (11 loc) 347 B
const webpack = require('webpack'); const buildConfig = require('../config/build'); const compiler = webpack(buildConfig); compiler.run((err, stats) => { if (err || stats.hasErrors()) { // Handle errors here const info = stats.toJson(); console.log(stats); } console.log('compile success!'); });