Skip to content
This repository has been archived by the owner on Dec 8, 2024. It is now read-only.

swap fileset for glob, Fixes #638 #648

Closed
wants to merge 1 commit into from

Conversation

graingert
Copy link

No description provided.

@graingert graingert force-pushed the swap-fileset-for-glob branch from bb4417f to eb73609 Compare June 21, 2016 10:04
@@ -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
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
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

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants