我想将许多 Javascript 文件连接到函数调用中。
结果我想得到这样的东西:
(function() {
// contents of file 1
// contents of file 2
// contents of file ..
})()
在 grunt-contrib-concat 包中没有这样的选项。我也没有找到任何包。
知道怎么做吗?
我想将许多 Javascript 文件连接到函数调用中。
结果我想得到这样的东西:
(function() {
// contents of file 1
// contents of file 2
// contents of file ..
})()
在 grunt-contrib-concat 包中没有这样的选项。我也没有找到任何包。
知道怎么做吗?