Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Odd issue when using gulp-filter after gulp.dest. #84

Open
Maleki opened this issue Aug 27, 2017 · 2 comments
Open

Odd issue when using gulp-filter after gulp.dest. #84

Maleki opened this issue Aug 27, 2017 · 2 comments
Labels
💵 Funded on Issuehunt This issue has been funded on Issuehunt

Comments

@Maleki
Copy link

Maleki commented Aug 27, 2017

Issuehunt badges

I need to copy some files then delete a sub-section of those files. Unfortunately when I use gulp-filter I'm not getting the desired results. I've reproduced the issue below. (except I'm copying the files to a second location)

gulp.task('filter', function(){
     var answer = JSON.parse('{"version":"v1.0.0.19","commitHash":"e3f286806|Somg Guy|2017-08-24T19:22:59-04:00|fix","sqlFiles":["Database/Current Scripts/0101_DictionaryInsert_TaskStatus.sql","Database/Current Scripts/5000_PersonInsert.sql","Database/Stored Procedures/AddPermissionExclude.sql","Database/Stored Procedures/PaymentListForGrid.sql"]}');
     var f = filter(['**/Current Scripts/*.sql'], { debug: true });

     return gulp.src(answer.sqlFiles)
        .pipe(gulp.dest(`.\\Database\\Archived Scripts\\v01_00\\v1.0.0.20`))
        .pipe(f)
        .pipe(gulp.dest(`.\\Database\\Archived Scripts\\v01_00\\v1.0.0.20_Current`));
});

Here are some things I noticed.

  1. in the case above the first folder is populated (with 4 results) but not the second.

  2. if I rearrange the pipes like so:

     return gulp.src(answer.sqlFiles)
        .pipe(f)
        .pipe(gulp.dest(`.\\Database\\Archived Scripts\\v01_00\\v1.0.0.20`))
        .pipe(gulp.dest(`.\\Database\\Archived Scripts\\v01_00\\v1.0.0.20_Current`));

Then both folders are populated with results (2 results).

  1. if I change the filter to something else like:

var f = filter(['**/*Status.sql'], { debug: true });

Then the first folder has 4 results and the second has 1 result. (expected.)

The desired behaviour in this case puts 4 files in the first folder and 2 in the second.


IssueHunt Summary

Sponsors (Total: $20.00)

Become a sponsor now!

Or submit a pull request to get the deposits!

Tips

@Maleki
Copy link
Author

Maleki commented Aug 27, 2017

I've created the following repo to ease in debugging.

gulp-filter-issue84

@issuehunt-oss issuehunt-oss bot added the 💵 Funded on Issuehunt This issue has been funded on Issuehunt label Jun 9, 2019
@IssueHuntBot
Copy link

@issuehunt has funded $20.00 to this issue.


Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
💵 Funded on Issuehunt This issue has been funded on Issuehunt
Projects
None yet
Development

No branches or pull requests

2 participants