You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running wiredep using gulp-wiredep seems to be replicating the bottom tags of index file. This occurs on each run of wiredep, but if we comment out the wiredep task it doesn't occur.
gulp.task('inject-vendors', [], function () {
helpers.log('Inject Vendors');
var masterFile = path.join(config.viewPath, config.master);
var options = {
bowerJson: require('./../bower'),
directory: vendorPath,
ignorePath: '../../public',
exclude: wireDepExclusions
};
return gulp.src(masterFile)
.pipe($.plumber())
.pipe(wireDep(options)) // <--- commenting this out stops the issue
.pipe(gulp.dest(config.viewPath));
});
Running wiredep using gulp-wiredep seems to be replicating the bottom tags of index file. This occurs on each run of wiredep, but if we comment out the wiredep task it doesn't occur.
File BEFORE running the
inject-vendors
task:File AFTER running the
inject-vendors
task:The text was updated successfully, but these errors were encountered: