javascript – 如何连接文件夹中的所有JS文件?
作者:互联网
我有一个主应用程序文件夹,其中包含许多子文件夹,每个子文件夹都有自己的子文件夹等,其中包含.js文件.
我想创建一个grunt任务,将所有.js文件连接在这个主顶级文件夹下的任何地方,称为src.
反正有吗?
现在,我有
cwd: '.',
src: [
'src/**/**/*.js',
'src/**/**/**/*.js',
'src/**/**/**/**/*.js',
],
dest: 'dist/app/superapp.js'
但这并不能解释所有可能的.js文件位置.如果我在某个文件夹中添加新的.js,我不想手动更新grunt任务.
解决方法:
根据grunt docs,src / ** / * .js就是你需要的.
foo/**/*.js will match all files ending with .js in the foo/ subdirectory and all of its subdirectories.
标签:javascript,gruntjs,grunt-contrib-concat 来源: https://codeday.me/bug/20190830/1764750.html