This repository was archived by the owner on Mar 26, 2018. It is now read-only.
This repository was archived by the owner on Mar 26, 2018. It is now read-only.
Task 'wiredep' is not in your gulpfile #1350
Open
Description
Generator fails with:
[19:42:09] Using gulpfile ~/Projects/skedul/gulpfile.js
[19:42:09] Task 'wiredep' is not in your gulpfile
[19:42:09] Please check the documentation for proper gulpfile formatting
It seems the generator is trying to run the wiredep task, but in my gulpfile.js wiredep is not a task but a plugin import which gets used by the bower task:
var wiredep = require('wiredep').stream;
// inject bower components
gulp.task('bower', function () {
return gulp.src(paths.views.main)
.pipe(wiredep({
directory: yeoman.app + '/bower_components',
ignorePath: '..'
}))
.pipe(gulp.dest(yeoman.app + '/views'));
});
Metadata
Metadata
Assignees
Labels
No labels