Skip to content
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

Closed
wants to merge 1 commit into from

Conversation

graingert
Copy link
Contributor

No description provided.

@@ -111,7 +111,7 @@
"async": "1.x",
"escodegen": "1.8.x",
"esprima": "2.7.x",
"fileset": "0.2.x",
"glob": "^5.0.15",
Copy link

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.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah woops

Copy link
Contributor Author

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

@lo1tuma lo1tuma mentioned this pull request Jul 10, 2016
@@ -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) {
Copy link
Contributor

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) {

Copy link
Contributor

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.

@maxkoryukov
Copy link

Looks, like there is an overall solution: #673

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants