我想将许多Javascript文件连接到函数调用中。
结果我想得到这样的东西:
(function() {
// contents of file 1
// contents of file 2
// contents of file ..
})()
在grunt-contrib-concat包中没有这样的选项。此外,我没有找到任何包装。
知道怎么做吗?
答案 0 :(得分:0)
您可以使用grunt-contrib-concat解决此问题。使用横幅和页脚选项,如下所示:
concat: {
options: {
banner: '(function() {\n',
footer: '\n})()'
},
dist: {
src: ['file1.js', 'file2.js'],
dest: ''
}
}