1

プロジェクトにwiredepを接続しようとしていますが、成功しません。assets/ 内に bower_components と bower.json があり、ルート ディレクトリに gruntfile.js があります。関連するグラントファイルは次のとおりです。

wiredep: {
    target: {
        src: [
            'grunt-test.html',
            'application/views/inc/inc_scripts.php',
            'application/views/inc/inc_head.php'
        ],
        directory: 'assets/bower_components',
        bowerJson: 'assets/bower.json',
        fileTypes: {
            php: {
                block: /(([\s\t]*)<!--\s*bower:*(\S*)\s*-->)(\n|\r|.)*?(<!--\s*endbower\s*-->)/gi,
                detect: {
                    js: /<script.*src=['"](.+)['"]>/gi,
                    css: /<link.*href=['"](.+)['"]/gi
                },
                replace: {
                    js: '<script src="{{filePath}}"></script>', // <-- Change this line
                    css: '<link rel="stylesheet" href="{{filePath}}" />'
                }
            },
            html: {
                block: /(([\s\t]*)<!--\s*bower:*(\S*)\s*-->)(\n|\r|.)*?(<!--\s*endbower\s*-->)/gi,
                detect: {
                    js: /<script.*src=['"](.+)['"]>/gi,
                    css: /<link.*href=['"](.+)['"]/gi
                },
                replace: {
                    js: '<script src="{{filePath}}"></script>', // <-- Change this line
                    css: '<link rel="stylesheet" href="{{filePath}}" />'
                }
            }
        }
    }
}

次に、実行grunt wiredep --verboseして次の出力を取得します。

Running "wiredep" task

Running "wiredep:target" (wiredep) task
Verifying property wiredep.target exists in config...OK
Files: grunt-test.html, application/views/inc/inc_scripts.php, application/views
/inc/inc_head.php
Verifying property wiredep.target.src exists in config...OK
Options: src=["grunt-test.html","application/views/inc/inc_scripts.php","application/views/inc/inc_head.php"], directory="assets/bower_components", bowerJson="a ssets/bower.json",fileTypes={"php":{"block":{},"detect":{"js":{},"css":{}},"replace":{"js":"<script src=\"{{filePath}}\"></script>","css":"<link rel=\"stylesheet\" href=\"{{filePath}}\" />"}},"html":{"block":{},"detect":{"js":{},"css":{}},"replace":{"js":"<script src=\"{{filePath}}\"></script>","css":"<link rel=\"stylesheet\" href=\"{{filePath}}\" />"}}}

Done, without errors.

しかし、何も起こりません。正しいタグを使用していることを確認し、ファイルタイプの問題ではないことを確認するために HTML ファイル (grunt-test.html) を追加しようとしましたが、今は途方に暮れています。

皆さんは何を見ますか?

前もって感謝します。

4

0 に答える 0