From 5731fd662539ca1d9b7290341f7ec9f0c90f0462 Mon Sep 17 00:00:00 2001 From: Alan Hamlett Date: Wed, 29 Jun 2016 10:49:21 -0700 Subject: [PATCH] npm script for gulp watch --- .gitignore | 5 ++++- package.json | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 8dc72a4..d3060e7 100644 --- a/.gitignore +++ b/.gitignore @@ -28,4 +28,7 @@ node_modules vendor/ -.idea \ No newline at end of file +.idea + +# Generated chrome extension +public/ diff --git a/package.json b/package.json index 083a262..0aaad9f 100644 --- a/package.json +++ b/package.json @@ -4,6 +4,7 @@ "test-react": "jest --verbose --coverage", "test-js": "node_modules/.bin/phantomjs tests/run.js", "start": "npm install && bower install && gulp", + "watch": "gulp watch", "lint": "jsxhint --jsx-only .", "postinstall": "gulp postinstall" },