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 diff --git a/gulpfile.js b/gulpfile.js index 1659898c0..a8c20d9bb 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -43,13 +43,13 @@ 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")); let eslintConfig = { parser: "babel-eslint", diff --git a/package.json b/package.json index 22c46035c..bcd2a4bba 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" diff --git a/src/js/userconfig.js b/src/js/userconfig.js index f87437974..30f0c7d11 100644 --- a/src/js/userconfig.js +++ b/src/js/userconfig.js @@ -115,6 +115,7 @@ async function saveConfigToDB() { 4000 ); } + return; } ); }