Skip to content

Commit c9da9ff

Browse files
author
James Halliday
committed
glob files in the runner
1 parent e98ead5 commit c9da9ff

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

bin/tape

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
#!/usr/bin/env node
22

33
var path = require('path');
4-
process.argv.slice(2).forEach(function(file) {
5-
require(path.resolve(process.cwd(), file));
4+
var glob = require('glob');
5+
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+
});
612
});
713

814
// vim: ft=javascript

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"dependencies": {
1212
"deep-equal": "~0.2.0",
1313
"defined": "~0.0.0",
14+
"glob": "~3.2.9",
1415
"inherits": "~2.0.1",
1516
"object-inspect": "~0.3.0",
1617
"resumer": "~0.0.0",

0 commit comments

Comments
 (0)