From d13fa243e7e1a3c532c52fbe95b25ee47fde57ef Mon Sep 17 00:00:00 2001 From: Oliver Blanthorn Date: Sun, 13 May 2018 14:26:59 +0100 Subject: [PATCH] Warn users that watch is broken --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c85fd9f5..2947af47 100644 --- a/package.json +++ b/package.json @@ -34,7 +34,7 @@ }, "scripts": { "build": "scripts/build.sh", - "watch": "chokidar src scripts --initial --silent -i 'src/excmds_{background,content}.ts' -i 'src/static/docs' -c 'npm run build'", + "watch": "echo 'watch is broken, use build instead'; exit 0; chokidar src scripts --initial --silent -i 'src/excmds_{background,content}.ts' -i 'src/static/docs' -c 'npm run build'", "clean": "rm -rf build generated", "test": "npm run build && jest --silent", "update-buildsystem": "rm -rf src/node_modules; npm run clean"