Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFeross Aboukhadijeh <feross@feross.org>2014-02-25 10:48:36 +0400
committerFeross Aboukhadijeh <feross@feross.org>2014-02-25 10:48:36 +0400
commita7e51fbb8d4244e76ea569bfa05e5f7f3b9f97dc (patch)
treeff8196eb616dcaf8a5a67851c9fcf46ad2d935a8 /package.json
parent7a02944dcf847eab0595265c02113ba118ccde6d (diff)
browserify change
Diffstat (limited to 'package.json')
-rw-r--r--package.json4
1 files changed, 2 insertions, 2 deletions
diff --git a/package.json b/package.json
index cda3859..18a3b12 100644
--- a/package.json
+++ b/package.json
@@ -69,12 +69,12 @@
"scripts": {
"build": "npm run build-css && npm run build-js",
"build-css": "stylus --use nib css/main.styl --compress --out chrome/ && ./bin/post-build.js",
- "build-js": "browserify --debug index.js > chrome/bundle.js",
+ "build-js": "browserify --debug . > chrome/bundle.js",
"prepublish": "npm run build",
"start": "npm run build && ./bin/start.js",
"test": "tape test/*.js",
"watch": "npm run watch-js & npm run watch-css",
"watch-css": "stylus --use nib css/main.styl --out chrome/ --watch",
- "watch-js": "watchify index.js --outfile chrome/bundle.js --debug --verbose"
+ "watch-js": "watchify . --outfile chrome/bundle.js --debug --verbose"
}
} \ No newline at end of file