grunt-contrib-concat - 如何在分隔符中包含连接路径?

时间:2013-04-21 01:57:18

标签: javascript gruntjs

鉴于这个简单的设置:

concat: {
        options: {
            stripBanners: false,
            separator: '\n/* path to js file */\n'
        },
        dist: {
            src: ['js/*.js'],
            dest: 'dist/<%= pkg.name %>-concat.js'
        }
    }

有没有办法动态地在每个分隔符中包含连接路径?

理想的连接文件应为:

/* js/file1.js */
var someFunction = function(){

}

/* js/file2.js */
var anotherFunction = function(){
}

我是Grunt的新手,任何想法都很受欢迎。

谢谢,

的Seb。

1 个答案:

答案 0 :(得分:1)

在你可以用这种方式处理的过程选项中

process: function(src, filepath) {
        console.log('// Source: ' + filepath + '\n'); ;
        return '// Source: ' + filepath + '\n'+src;
      }