我已多次尝试通过“yo angular”启动webapp并选择gulp而不是grunt,但是失败了
Task 'wiredep' is not in your gulpfile
Please check the documentation for proper gulpfile formatting
然后没有任何移动任务。
当我使用 ctrl + C 来停止它并使用“gulp serve”或“gulp”运行时,它显示没有错误或警告,但浏览器的控制台显示“Uncaught ReferenceError” :角度未定义“。
然后我试着替换
gulp.task('bower', function () {
return gulp.src(paths.views.main)
.pipe(wiredep({
directory: yeoman.app + '/bower_components',
ignorePath: '..'
})) "
.pipe(gulp.dest(yeoman.app + '/views'));
});
带
gulp.task('wiredep', function () {
return gulp.src(paths.views.main)
.pipe(wiredep({
directory: 'bower_components',
ignorePath: '..'
}))",
.pipe(gulp.dest(yeoman.app ));
});
并删除dist文件夹,就像这样做click here
而且我也尝试更新我的npm,但它们都不起作用
有任何想法吗?