使用gruntfile-gtx时,我在哪里放置config for plugin

时间:2015-11-09 16:38:44

标签: gruntjs npm gruntfile

所以,我已经安装了基于npm / bower / grunt / angular.js的单页应用

在root中我有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();

所以现在我必须从这里https://github.com/hollandben/grunt-cache-bust

安装grunt-cache-bust插件

我用npm安装它,现在我不知道在哪里为此编写任务。

请告诉我或给我一个正确理解的链接

1 个答案:

答案 0 :(得分:0)

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

示例cacheBust.js:

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

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