Index: package.json |
=================================================================== |
--- a/package.json |
+++ b/package.json |
@@ -1,16 +1,23 @@ |
{ |
"name": "adblockplusui", |
"private": true, |
"description": "Adblock Plus UI", |
"scripts": { |
"lint": "npm run lint:js", |
"lint:js": "eslint ./*.js ./lib/*.js ./ext/*.js", |
"prepare": "python2 ensure_dependencies.py", |
- "start": "http-server" |
+ "start": "http-server & npm run watch", |
+ "bundle": "npm run bundle:desktop-options", |
+ "bundle:desktop-options": "eslint ./js/**/*.js && echo '/* eslint-disable */// BUNDLED FILE'>./desktop-options.js && browserify --node --no-bundle-external js/desktop-options.js >> ./desktop-options.js", |
+ "watch": "npm run watch:desktop-options", |
+ "watch:desktop-options": "watch 'npm run bundle:desktop-options' ./js", |
+ "postinstall": "npm run bundle" |
}, |
"devDependencies": { |
+ "browserify": "^16.1.0", |
"eslint": "^4.16.0", |
"eslint-config-eyeo": "^2.0.0", |
- "http-server": "^0.11.1" |
+ "http-server": "^0.11.1", |
+ "watch": "^1.0.2" |
} |
} |