1

我想将许多 Javascript 文件连接到函数调用中。

结果我想得到这样的东西:

(function() {

  // contents of file 1
  // contents of file 2
  // contents of file ..

})()

在 grunt-contrib-concat 包中没有这样的选项。我也没有找到任何包。

知道怎么做吗?

4

1 回答 1

0

您可以使用 grunt-contrib-concat 解决此问题。像这样使用横幅和页脚选项:

 concat: {
    options: {
        banner: '(function() {\n',
        footer: '\n})()'
    },
    dist: {
       src: ['file1.js', 'file2.js'],
       dest: ''
    }
}
于 2013-10-04T11:21:29.890 回答