mariusschulz/gulp-iife

Does not work properly when working with subfolders

Closed this issue · 3 comments

Hi,

Directory Structure:

app/
  |__images/
  |__scripts/
     |__adapters/
        |__adapter_one.js
        |__adapter_two.js
        |__ ...
     |__models/
        |__model_one.js
        |__model_two.js
        |__ ...
     |__ ...
  |__app.js

Gulp Task:

gulp.task('iife', function() {
  return gulp.src('app/scripts/**/*')
  .pipe(iife({ useStrict: false }))
  .pipe(gulp.dest('app/test/'));
});

Running above task gives you following error:

$ gulp iife
[18:01:55] Using gulpfile /Users/ilovecoffee/app/gulpfile.js
[18:01:55] Starting 'iife'...
[18:01:55] 'iife' errored after 96 ms
[18:01:55] Error: EEXIST: file already exists, mkdir '/Users/ilovecoffee/app/test/adapters'
    at Error (native)

What is strange is that iife creates test folder with adapter file. The content of this adapter file is:

// adapter.js
;(function() {
null
}());

Your glob should be 'app/scripts/**/*.js' (note the .js). Can you try that one, please?

Ah! N00B mistake. Thanks for pointing out. By adding extension, it works as expected.

Great!