8

运行“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: {}
            }
        }
    },
4

1 回答 1

10

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

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

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

  <!-- bower:js -->
  <!-- place for dependencies -->
  <!-- endbower -->
于 2015-01-06T01:33:22.633 回答