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-03-09 00:51:32 +0300
committerFeross Aboukhadijeh <feross@feross.org>2016-03-09 00:51:32 +0300
commitf76e8875d24368c71ed560b253f3dd89669a2c7f (patch)
tree36d10ca40f7c2a6fc673ca8d257a2e4d074e6466
parent8d153285992e19e8d77f09eb7109bf1abc4c0d84 (diff)
add npm run update-authors
-rw-r--r--AUTHORS.md2
-rwxr-xr-xbin/update-authors.sh2
-rw-r--r--package.json3
3 files changed, 4 insertions, 3 deletions
diff --git a/AUTHORS.md b/AUTHORS.md
index 5616fac..9376cfe 100644
--- a/AUTHORS.md
+++ b/AUTHORS.md
@@ -61,5 +61,5 @@
- James Halliday <mail@substack.net>
- Bazyli BrzoĢska <bazyli.brzoska@gmail.com>
-#### Generated by tools/authors.sh.
+#### Generated by bin/update-authors.sh.
diff --git a/bin/update-authors.sh b/bin/update-authors.sh
index 2b7fd79..3d3410e 100755
--- a/bin/update-authors.sh
+++ b/bin/update-authors.sh
@@ -17,6 +17,6 @@ END {
print "# Authors\n\n";
print "#### Ordered by first contribution.\n\n";
print @authors, "\n";
- print "#### Generated by tools/authors.sh.\n\n";
+ print "#### Generated by bin/update-authors.sh.\n\n";
}
' > AUTHORS.md
diff --git a/package.json b/package.json
index 6177a62..76cdd32 100644
--- a/package.json
+++ b/package.json
@@ -123,6 +123,7 @@
"test-browser": "zuul -- test/*.js test/browser/*.js",
"test-browser-headless": "zuul --electron -- test/*.js test/browser/*.js",
"test-browser-local": "zuul --local -- test/*.js test/browser/*.js",
- "test-node": "tape test/*.js test/node/*.js"
+ "test-node": "tape test/*.js test/node/*.js",
+ "update-authors": "./bin/update-authors.sh"
}
}