We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 295e35c commit 80e309aCopy full SHA for 80e309a
bin/tape
@@ -0,0 +1,8 @@
1
+#!/usr/bin/env node
2
+
3
+var path = require('path');
4
+process.argv.slice(2).forEach(function(file) {
5
+ require(path.resolve(process.cwd(), file));
6
+});
7
8
+// vim: ft=javascript
package.json
@@ -3,7 +3,7 @@
"version" : "0.2.2",
"description" : "tap-producing test harness for node and browsers",
"main" : "index.js",
- "bin" : {},
+ "bin" : "./bin/tape",
"directories" : {
"example" : "example",
9
"test" : "test"
0 commit comments