0

そのため、npm/bower/grunt/angular.js に基づいて単一ページ アプリをインストールしました。

ルートには、このコードを含む gruntfile.js があります

    module.exports = function(grunt) {
    var gtx = require('gruntfile-gtx').wrap(grunt);

    gtx.loadAuto();

    var gruntConfig = require('./grunt');
    gruntConfig.package = require('./package.json');

    gtx.config(gruntConfig);

    // We need our bower components in order to develop
    gtx.alias('build:standardversion', [

        'compass:standardversion',
        ...

    ]);

    gtx.finalise();

したがって、ここから grunt-cache-bust プラグインをインストールする必要があります https://github.com/hollandben/grunt-cache-bust

npmでインストールしましたが、このタスクをどこに書くべきかわかりません。

ちゃんとわかるように教えていただくか、リンクを教えてください

4

1 に答える 1