3

grunt-wiredep パッケージを使用して、bower コンポーネントをビュー マークアップに挿入することに成功しています。現在、ビューを HTML から Jade に移植しています。ただし、ビルド スクリプトを実行すると、HTML を使用していたときのように、bower スクリプトがページに挿入されません。

srcパラメータをindex.jadeではなくreference に変更しましたindex.html。注射がうまくいかない理由はありますか?

4

2 に答える 2

1

1.8.5Jade のサポートを追加する最新バージョンの wireep を実行していることを確認してください。

ドキュメントと、より多くのオプションを提供するメインの readmeを確認してください。

独自のビュー構造で以下を更新します。

wiredep: {

  target: {

    // Point to the files that should be updated when
    // you run `grunt wiredep`
    src: [
      'app/views/**/*.html',   // .html support...
      'app/views/**/*.jade',   // .jade support...
      'app/styles/main.scss',  // .scss & .sass support...
      'app/config.yml'         // and .yml & .yaml support out of the box!
    ],

    // Optional:
    // ---------
    options: {
      cwd: '',
      dependencies: true,
      devDependencies: false,
      exclude: [],
      fileTypes: {},
      ignorePath: '',
      overrides: {}
    }

  }

}
于 2014-09-08T05:03:40.417 に答える