Skip to content

Commit

Permalink
Remove test folder for parsing AST
Browse files Browse the repository at this point in the history
  • Loading branch information
ghaiklor committed Apr 16, 2015
1 parent 56c1397 commit fff96bd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion generators/app/steps/end.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ module.exports = {
if (!(this.options['skip-install'] || this.options['skip-all'])) {
var done = this.async();

recursive(this.destinationPath(), ['node_modules'], function (error, files) {
// FIXME: test folder is also scanning for require and this cause issue with relative
recursive(this.destinationPath(), ['node_modules', 'test'], function (error, files) {
files = files.filter(function (file) {
return file.split('.').pop() === 'js';
}).map(function (file) {
Expand Down

0 comments on commit fff96bd

Please sign in to comment.