Skip to content

Commit

Permalink
Merge pull request #116 from doctorpangloss/master
Browse files Browse the repository at this point in the history
Skip folders called `test`
  • Loading branch information
Matt Hernandez committed Mar 23, 2015
2 parents fd2a943 + 1b592fa commit 5b2ffac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/demeteorizer.js
Original file line number Diff line number Diff line change
Expand Up @@ -242,8 +242,8 @@ Demeteorizer.prototype.findDependenciesInFolder = function (folder, inNodeModule
}
}

// Skip the examples directory.
if (file === 'examples' || file === 'samples') {
// Skip the examples, samples and tests directories.
if (file === 'examples' || file === 'samples' || file === 'test') {
keepGoing = false;
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"keywords": [
"meteor"
],
"version": "2.1.2",
"version": "2.1.3",
"author": "Modulus <[email protected]>",
"maintainers": [
"Brandon Cannaday <[email protected]>",
Expand Down

0 comments on commit 5b2ffac

Please sign in to comment.