From b22cba63b87c16a76c34f9dc2f14bff3798f09dd Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Mon, 13 May 2013 19:25:34 +0200 Subject: [PATCH] js: Use 'npm start' to run 'grunt watch' --- js/README.md | 2 +- js/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/js/README.md b/js/README.md index 27803f25..0e5e17c9 100644 --- a/js/README.md +++ b/js/README.md @@ -69,7 +69,7 @@ You can now run the tests: To run tests automatically when you save a file: - npm run-script watch + npm start To run tests, concatenate, minify the source, and update the JavaScript files in `mopidy/frontends/http/data/`: diff --git a/js/package.json b/js/package.json index b208be3f..4d4efe9f 100644 --- a/js/package.json +++ b/js/package.json @@ -31,6 +31,6 @@ "scripts": { "test": "grunt test", "build": "grunt build", - "watch": "grunt watch" + "start": "grunt watch" } }