Skip to content

Commit a2b74f9

Browse files
Joris-van-der-Welljharb
authored andcommitted
[Fix] bin/tape: ignore options on windows
The current version of `glob` returns paths always with forward slashes, even on windows. This causes the `dotignore` `Matcher` to never match the paths on windows, because it expects backslashes on windows. This means that the `--ignore` and `--ignore-pattern` options do not work properly on windows. This is fixed in a newer version of glob (not sure which specific version). However, we can not upgrade because it drops support for older node versions that we still want to support in tape. So instead, a workaround is to correct the slashes ourselves. This issue is already covered by existing test cases (test/ignore-pattern.js), that are currently failing when they are ran on windows. For example: `.\node_modules\.bin\tap test/*.js`. However, an additional fix is needed to make these tests pass (see next commit).
1 parent 9cbae8a commit a2b74f9

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

bin/tape

+14
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
'use strict';
44

5+
var path = require('path');
56
var parseOpts = require('minimist');
67
var objectKeys = require('object-keys');
78

@@ -68,6 +69,19 @@ var files = opts._.reduce(function (result, arg) {
6869
throw new TypeError('unknown error: glob.sync("' + arg + '") did not return an array or throw. Please report this.');
6970
}
7071

72+
// Workaround for glob v7 always replacing backslashes with forward slashes on windows
73+
// This causes dotignore to not match the paths properly.
74+
// This is fixed in newer version of glob, however we can not upgrade because it drops
75+
// support for older node versions that we still want to support in tape.
76+
// If glob is updated in the future this workaround can be removed, however note that
77+
// the output of glob must then be sorted here because glob no longer does that.
78+
// (also, backslashes and forward slashes should be ordered the same)
79+
if (path.sep === '\\') {
80+
globFiles = globFiles.map(function (globFile) {
81+
return globFile.replace(/\//g, '\\');
82+
});
83+
}
84+
7185
return result.concat(globFiles);
7286
}
7387
return result.concat(arg);

0 commit comments

Comments
 (0)