我已经尝试过很多次通过“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”运行时,它没有显示错误或警告,但浏览器的控制台显示“未捕获的 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 文件夹,就像这样单击此处
,我也尝试更新我的 npm,但它们都不起作用。
有任何想法吗?