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"