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

0

在包含 GruntFile.js 的目录中,如果“grunt”文件夹不存在,则创建它。在“grunt”文件夹中,创建一个文件“cacheBust.js”

示例 cacheBust.js:

module.exports = {
    assets: {
        files: { 
            src: ['index.html', 'contact.html']
        }
    }
 }

从命令行运行 cacheBust:“grunt cacheBust”

于 2015-11-10T02:02:46.677 回答