From c8273e98757f75378aa2a16f2bbaeb05bd9d913e Mon Sep 17 00:00:00 2001 From: typer Date: Mon, 2 Nov 2020 17:43:42 -0800 Subject: [PATCH] renamed gulp build to gulp compile, and gulp rebuild to gulp build --- gulpfile.js | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 2a44cea2c..7754c148c 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -37,10 +37,10 @@ task("clean", function () { return src("./dist/", { allowEmpty: true }).pipe(vinylPaths(del)); }); -task("build", series("static", "sass", "cat")); +task("compile", series("static", "sass", "cat")); task("watch", function () { - watch(["./public/**/*", "./src/**/*"], series("build")); + watch(["./public/**/*", "./src/**/*"], series("compile")); }); -task("rebuild", series("clean", "build")); +task("build", series("clean", "compile")); diff --git a/package.json b/package.json index d476d5920..22900b923 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "license": "GPL-3.0", "private": true, "scripts": { - "build": "npx gulp rebuild", + "build": "npx gulp build", "start": "npm run build && firebase serve", "start:dev": "npm run build && concurrently --kill-others \"npx gulp watch\" \"firebase serve\"", "postinstall": "cd functions && npm install"