Skip to content

Commit 7802037

Browse files
authored
change gulp build to use series task (#483)
Changed gulp build to use series task
1 parent 59331c4 commit 7802037

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

gulpfile.js

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -335,18 +335,14 @@ gulp.task('clean', () => fse.remove(TMP_DIR));
335335

336336
// Executes the basic tasks for the default language.
337337
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',
342340
'clean'
343341
));
344342

345343
// Builds everything (JS for all languages, both LTR and RTL CSS).
346344
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',
351347
'clean'
352348
));

0 commit comments

Comments
 (0)