We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e98ead5 commit c9da9ffCopy full SHA for c9da9ff
bin/tape
@@ -1,8 +1,14 @@
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));
+var glob = require('glob');
+
6
+process.argv.slice(2).forEach(function (arg) {
7
+ glob(arg, function (err, files) {
8
+ files.forEach(function (file) {
9
+ require(path.resolve(process.cwd(), file));
10
+ });
11
12
});
13
14
// vim: ft=javascript
package.json
@@ -11,6 +11,7 @@
"dependencies": {
"deep-equal": "~0.2.0",
"defined": "~0.0.0",
+ "glob": "~3.2.9",
15
"inherits": "~2.0.1",
16
"object-inspect": "~0.3.0",
17
"resumer": "~0.0.0",
0 commit comments