From 2b09d59b1dff5de74764a18e4bc1defb13c9654c Mon Sep 17 00:00:00 2001 From: Min RK Date: Tue, 31 Jan 2017 15:05:36 +0100 Subject: [PATCH] re-add `npm run build:watch` it's not true watching, just polling every few seconds. Help docs still point to this command, and we need something for devs as `ignore_minified_js` is gone. --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 4385ad4a8..6b3a7aff9 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,8 @@ }, "scripts": { "bower": "bower install", - "build": "python setup.py js css" + "build": "python setup.py js css", + "build:watch": "set -e; while true; do npm run build; sleep 3; done" }, "devDependencies": { "bower": "*",