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-09-15 20:26:56 +0400
committerFeross Aboukhadijeh <feross@feross.org>2014-09-15 20:26:56 +0400
commit0ba2a5a9b07654fd74ecfdabdec5e4cf9c1ac0f8 (patch)
treed6d4d0593ce0daa45b1a7464d04d24cee2480460
parentc36bc28bcad7d1db0378de358292418c09e7c13c (diff)
add command for debug build
-rw-r--r--.gitignore1
-rw-r--r--package.json1
2 files changed, 2 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index 136e4a5..8260174 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
vlc-log.txt
+webtorrent.debug.js
diff --git a/package.json b/package.json
index d333f1c..2bdff9a 100644
--- a/package.json
+++ b/package.json
@@ -67,6 +67,7 @@
},
"scripts": {
"build": "browserify -s WebTorrent -r ./ | uglifyjs -c warnings=false -m > webtorrent.min.js",
+ "build-debug": "browserify -s WebTorrent -r ./ > webtorrent.debug.js",
"start": "./bin/cmd.js",
"test": "tape test/*.js"
}