From 7dcddf90e9e5a509d777e49bcb1a5996f79ca577 Mon Sep 17 00:00:00 2001 From: Benjamin Tan Date: Wed, 28 Sep 2016 13:54:23 +0800 Subject: [PATCH] Remove `.nodemonignore` file. Adding configuration files for every tool used will clutter up the repository, especially for a configuration as simple as this. --- .nodemonignore | 2 -- package.json | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) delete mode 100644 .nodemonignore diff --git a/.nodemonignore b/.nodemonignore deleted file mode 100644 index edd9d60a..00000000 --- a/.nodemonignore +++ /dev/null @@ -1,2 +0,0 @@ -build/ -dist/ diff --git a/package.json b/package.json index 8bdcfab3..a66c6025 100644 --- a/package.json +++ b/package.json @@ -107,6 +107,6 @@ "test": "standard && depcheck --ignores=buble,nodemon,gh-release --ignore-dirs=build,dist && node ./bin/extra-lint.js", "gh-release": "gh-release", "update-authors": "./bin/update-authors.sh", - "watch": "nodemon --exec \"npm run start\" --ext js,pug,css" + "watch": "nodemon --exec \"npm run start\" --ext js,pug,css --ignore build/ --ignore dist/" } }