From 5db32b83910c90184268df4c2ddb052e64f3114a Mon Sep 17 00:00:00 2001 From: Jack Date: Mon, 2 Nov 2020 14:51:30 +0000 Subject: [PATCH 1/3] missing return --- public/js/userconfig.js | 1 + 1 file changed, 1 insertion(+) diff --git a/public/js/userconfig.js b/public/js/userconfig.js index a7aca7734..3b4b63782 100644 --- a/public/js/userconfig.js +++ b/public/js/userconfig.js @@ -115,6 +115,7 @@ async function saveConfigToDB() { 4000 ); } + return; } ); } From 9329905e9652d198fb93f8c4169fc03c8fb61acd Mon Sep 17 00:00:00 2001 From: Jack Date: Mon, 2 Nov 2020 15:06:58 +0000 Subject: [PATCH 2/3] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index b6b3e53f3..74f802a29 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,9 @@ If you encounter a bug, or have a feature request - send me a message on Reddit, # credits Montydrei for the name suggestion + Everyone who provided valuable feedback on the original reddit post for the prototype of this website + Contributors that have helped with implementing various features, adding themes and more. # support From c8273e98757f75378aa2a16f2bbaeb05bd9d913e Mon Sep 17 00:00:00 2001 From: typer Date: Mon, 2 Nov 2020 17:43:42 -0800 Subject: [PATCH 3/3] 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"