mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-09-29 18:15:46 +08:00
public is now static
This commit is contained in:
parent
115e6a7efd
commit
15f8146db5
1 changed files with 2 additions and 2 deletions
|
@ -30,7 +30,7 @@ task("sass", function () {
|
|||
});
|
||||
|
||||
task("static", function () {
|
||||
return src("./public/**/*").pipe(dest("./dist/"));
|
||||
return src("./static/**/*").pipe(dest("./dist/"));
|
||||
});
|
||||
|
||||
task("clean", function () {
|
||||
|
@ -40,7 +40,7 @@ task("clean", function () {
|
|||
task("compile", series("static", "sass", "cat"));
|
||||
|
||||
task("watch", function () {
|
||||
watch(["./public/**/*", "./src/**/*"], series("compile"));
|
||||
watch(["./static/**/*", "./src/**/*"], series("compile"));
|
||||
});
|
||||
|
||||
task("build", series("clean", "compile"));
|
||||
|
|
Loading…
Add table
Reference in a new issue