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));
335335
336336// Executes the basic tasks for the default language.
337337gulp . 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' ,
342340 'clean'
343341) ) ;
344342
345343// Builds everything (JS for all languages, both LTR and RTL CSS).
346344gulp . 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' ,
351347 'clean'
352348) ) ;
You can’t perform that action at this time.
0 commit comments