gpt4 book ai didi

angularjs - Grunt Concat 任务 : How to exclude some files?

转载 作者:行者123 更新时间:2023-12-04 17:33:59 24 4
gpt4 key购买 nike

我在 grunt 中有以下任务:

concat: {
js: {
src: ['app/**/**/*.js',
'!app/**/**/*test.js'],
dest: 'app/scripts.js'
}
}

但不排除以 test结尾的js文件.
我应该使用什么模式来排除这些文件?

最佳答案

这应该有效:

concat: {
js: {
src: [
'app/**/*.js',
'!**/*test.js'
],
dest: 'app/scripts.js'
}
}

关于angularjs - Grunt Concat 任务 : How to exclude some files?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30632075/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com