-
Notifications
You must be signed in to change notification settings - Fork 786
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
swap fileset for glob, Fixes #638 #648
Conversation
bb4417f
to
eb73609
Compare
@@ -111,7 +111,7 @@ | |||
"async": "1.x", | |||
"escodegen": "1.8.x", | |||
"esprima": "2.7.x", | |||
"fileset": "0.2.x", | |||
"glob": "^5.0.15", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
glob
is already a devDependency
, so you should remove it there.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah woops
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is probably redundant with the nyc merge
@@ -9,7 +9,7 @@ var path = require('path'), | |||
module.exports = { | |||
setUp: function (cb) { | |||
if (!allFiles) { | |||
fileset('**/*.js', '', { cwd: root}, function (err, files) { | |||
glob('**/*.js', '', { cwd: root}, function (err, files) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should delete the second paramter
- glob('**/*.js', '', { cwd: root}, function (err, files) {
+ glob('**/*.js', { cwd: root}, function (err, files) {
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Then can make ci happy.
Looks, like there is an overall solution: #673 |
No description provided.