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>2019-08-08 05:30:36 +0300
committerFeross Aboukhadijeh <feross@feross.org>2019-08-08 23:52:49 +0300
commit375dfe674e226c9717e2a93c92fddd2f24883f3d (patch)
treebddb94c79b36acc6d7d9b18dba8d662bd5164075 /package.json
parent06f5b04773441359c22e5ca221e662e71eb06bc3 (diff)
Remove accidental double minification (saves 2kb!)
Diffstat (limited to 'package.json')
-rw-r--r--package.json3
1 files changed, 1 insertions, 2 deletions
diff --git a/package.json b/package.json
index 7dbab05..8f44d6c 100644
--- a/package.json
+++ b/package.json
@@ -76,7 +76,6 @@
},
"devDependencies": {
"airtap": "^2.0.3",
- "babel-minify": "^0.5.0",
"bittorrent-tracker": "^9.4.0",
"browserify": "^16.2.3",
"disc": "^1.3.3",
@@ -117,8 +116,8 @@
"url": "git://github.com/webtorrent/webtorrent.git"
},
"scripts": {
- "build": "browserify --plugin tinyify -s WebTorrent -e . | minify > webtorrent.min.js",
"build-debug": "browserify -s WebTorrent -e ./ > webtorrent.debug.js",
+ "build": "browserify --plugin tinyify -s WebTorrent -e . > webtorrent.min.js",
"size": "npm run size-js && npm run size-disc",
"size-js": "npm run build && cat webtorrent.min.js | gzip | wc -c",
"size-disc": "browserify --plugin tinyify --full-paths . | discify --open",