Skip to content

Commit 5b2ffac

Browse files
author
Matt Hernandez
committed
Merge pull request #116 from doctorpangloss/master
Skip folders called `test`
2 parents fd2a943 + 1b592fa commit 5b2ffac

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/demeteorizer.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -242,8 +242,8 @@ Demeteorizer.prototype.findDependenciesInFolder = function (folder, inNodeModule
242242
}
243243
}
244244

245-
// Skip the examples directory.
246-
if (file === 'examples' || file === 'samples') {
245+
// Skip the examples, samples and tests directories.
246+
if (file === 'examples' || file === 'samples' || file === 'test') {
247247
keepGoing = false;
248248
}
249249

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"keywords": [
55
"meteor"
66
],
7-
"version": "2.1.2",
7+
"version": "2.1.3",
88
"author": "Modulus <[email protected]>",
99
"maintainers": [
1010
"Brandon Cannaday <[email protected]>",

0 commit comments

Comments
 (0)