From c25bee755c664086befa6d8b7ccccde04cdd15ae Mon Sep 17 00:00:00 2001 From: Noam Okman Date: Sat, 3 Sep 2016 21:13:11 +0300 Subject: [PATCH] make "npm run watch" work on windows (#878) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a12d8c2795..0acb921a44 100644 --- a/package.json +++ b/package.json @@ -102,6 +102,6 @@ "test": "standard && depcheck --ignores=babel-cli,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" } }