mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2026-01-11 01:44:50 +08:00
renamed gulp build to gulp compile, and gulp rebuild to gulp build
This commit is contained in:
parent
92214e7b45
commit
c8273e9875
2 changed files with 4 additions and 4 deletions
|
|
@ -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"));
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue