We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92d819a commit b92c72bCopy full SHA for b92c72b
antd-tools/gulpfile.js
@@ -238,11 +238,17 @@ function pub (done) {
238
gulp.task('dist', ['compile'], (done) => {
239
dist(done)
240
})
241
-gulp.task('compile', ['compile-with-es'], () => {
+gulp.task('compile', ['compile-with-es'], (done) => {
242
compile()
243
+ .on('finish', function () {
244
+ done()
245
+ })
246
-gulp.task('compile-with-es', () => {
247
+gulp.task('compile-with-es', (done) => {
248
compile(false)
249
250
251
252
253
254
gulp.task('pub', ['check-git', 'compile'], (done) => {
0 commit comments