From 4f563467b9bd57ef41b4168ed5297b4dac3b6613 Mon Sep 17 00:00:00 2001 From: Matteo Manzinello Date: Wed, 17 Jun 2020 15:01:08 +0200 Subject: [PATCH] gulp parallel now --- gulpfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 493cabe..159c174 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -1,4 +1,4 @@ -const { src, dest, series } = require("gulp"); +const { src, dest, parallel } = require("gulp"); const tsGulp = require("gulp-typescript"); const tsProject = tsGulp.createProject("tsconfig.json"); @@ -37,4 +37,4 @@ function js() { exports.style = style; exports.js = js; -exports.default = series(style, js); +exports.default = parallel(style, js);