We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8faa184 commit 6eb21aaCopy full SHA for 6eb21aa
lib/stack.js
@@ -1,7 +1,10 @@
1
var StackUtils = require('stack-utils')
2
3
+// Ignore tap if it's a dependency, or anything
4
+// in this lib folder.
5
module.exports = new StackUtils({
6
internals: StackUtils.nodeInternals().concat([
- /node_modules[\/\\]tap[\/\\]/
7
+ /node_modules[\/\\]tap[\/\\]/,
8
+ new RegExp(__dirname + '\\b', 'i')
9
])
10
})
0 commit comments