yeoman grunt-wiredep没有注入依赖项

时间:2014-09-17 18:46:11

标签: gruntjs yeoman grunt-wiredep wiredep

运行“wiredep:target”(wiredep)任务

完成,没有错误

但不注入bower.json的依赖项。 无法调试此问题。任何帮助表示赞赏。

Gruntfile.js:

wiredep: {

        target: {

            // Point to the files that should be updated when
            // you run `grunt wiredep`
            src: [
                '<%= yeoman.app %>/index.html'
            ],
            // Optional:
            // ---------
            options: {
                cwd: '',
                dependencies: true,
                devDependencies: false,
                exclude: [],
                fileTypes: {},
                ignorePath: '',
                overrides: {}
            }
        }
    },

1 个答案:

答案 0 :(得分:10)

请在bower.json文件中验证一种依赖项。您可能使用 - save-dev 将它们安装为devDependencies。关于wiredep的可选部分(您附加的)&#34; devDependencies&#34; 选项已关闭,因此省略了这种依赖关系。为了检查这种情况,请快速打开如下选项并运行wiredep任务:

        // Optional:
        // ---------
        options: {
            // ...
            devDependencies: true
            // ...
        }

如果我的假设将确认您应该在标记之间的目标html中注入依赖项:

  <!-- bower:js -->
  <!-- place for dependencies -->
  <!-- endbower -->