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>2016-02-14 10:43:26 +0300
committerFeross Aboukhadijeh <feross@feross.org>2016-02-14 11:43:25 +0300
commitedb603933469fa9edc64b41589752d754f1eb6fd (patch)
tree4a8c127e7792a8e7268a6e855ed2b58a01d0a905
parente23a45bf038d89950aa818b7665f272e844279af (diff)
uglifyjs: agressive minification
-rw-r--r--package.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/package.json b/package.json
index ca80b4e..36336cd 100644
--- a/package.json
+++ b/package.json
@@ -115,7 +115,7 @@
"url": "git://github.com/feross/webtorrent.git"
},
"scripts": {
- "build": "browserify -s WebTorrent -e ./ | uglifyjs -m > webtorrent.min.js",
+ "build": "browserify -s WebTorrent -e ./ | uglifyjs -c warnings=false -m > webtorrent.min.js",
"build-debug": "browserify -s WebTorrent -e ./ > webtorrent.debug.js",
"size": "npm run build && cat webtorrent.min.js | gzip | wc -c",
"test": "standard && node ./bin/test.js",