File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -335,18 +335,14 @@ gulp.task('clean', () => fse.remove(TMP_DIR));
335
335
336
336
// Executes the basic tasks for the default language.
337
337
gulp . task ( 'default' , gulp . series (
338
- gulp . parallel (
339
- 'build-externs' , 'build-ts' , 'build-js' ,
340
- 'build-npm' , 'build-css' , 'build-css-rtl'
341
- ) ,
338
+ 'build-externs' , 'build-ts' , 'build-js' ,
339
+ 'build-npm' , 'build-css' , 'build-css-rtl' ,
342
340
'clean'
343
341
) ) ;
344
342
345
343
// Builds everything (JS for all languages, both LTR and RTL CSS).
346
344
gulp . task ( 'build-all' , gulp . series (
347
- gulp . parallel (
348
- 'build-externs' , 'build-ts' , 'build-all-js' ,
349
- 'build-npm' , 'build-css' , 'build-css-rtl'
350
- ) ,
345
+ 'build-externs' , 'build-ts' , 'build-all-js' ,
346
+ 'build-npm' , 'build-css' , 'build-css-rtl' ,
351
347
'clean'
352
348
) ) ;
You can’t perform that action at this time.
0 commit comments