我用Angular - generator构建了一个Angular应用,
我正在用Grunt Build构建应用程序,然后我添加了Bootstrap 3和npm install Grunt -bower-install
我将这些行添加到Grunt文件module.exports = function (grunt) {
require('load-grunt-tasks')(grunt);
require('time-grunt')(grunt);
//ADDED THIS LINE
grunt.loadNpmTasks('grunt-bower-install');
grunt.initConfig({
yeoman: {
// configurable paths
app: require('./bower.json').appPath || 'app',
dist: 'dist'
},
//ADDED THESE LINES
'bower-install': {
target: {
src: [
'app/index.html'
],
}
},
我已经删除了这些行!
现在Grunt Build抛出这个错误
Running "bowerInstall:app" (bowerInstall) task
Warning: Cannot read property 'main' of undefined Use --force to continue.
Aborted due to warnings.
我不知道该做什么,甚至从哪里开始?
在我的约曼生成的项目中,这个任务看起来像:
'bower-install': {
app: {
html: '<%= yeoman.app %>/index.html',
ignorePath: '<%= yeoman.app %>/'
}
},
在新版本中使用src
代替html
:
'bowerInstall': {
app: {
src: ['<%= yeoman.app %>/index.html'],
ignorePath: '<%= yeoman.app %>/'
}
},
也许你可以根据自己的情况进行调整。虽然我认为它应该工作不改变。
但你有几乎相同的,所以可能问题在另一个地方。
我找到答案了
我只需要运行wer Install,