forked from alibaba/BizCharts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgulpfile.js
More file actions
32 lines (30 loc) · 681 Bytes
/
gulpfile.js
File metadata and controls
32 lines (30 loc) · 681 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/* eslint-disable no-unused-expressions */
const gulp = require('gulp');
const gutil = require('gulp-util');
const webpack = require('webpack');
const webpackConfig = require('./webpack.config');
function buildUmd(cb) {
const compiler = webpack(webpackConfig, (err, stats) => {
if (err) {
gutil.log(err);
}
gutil.log(
stats.toString({
colors: true,
chunks: false,
}),
);
});
compiler.plugin('done', stats => {
console.log(stats);
if (stats.hasErrors()) {
console.log(
stats.toString({
colors: true,
}),
);
}
cb && cb();
});
}
exports.default = gulp.series(buildUmd);