how to exclude required files from grunt merge code example
Example: how to exclude required files from grunt merge
concat: {
js: {
src: [
'app/**/*.js',
'!**/*test.js'
],
dest: 'app/scripts.js'
}
}
concat: {
js: {
src: [
'app/**/*.js',
'!**/*test.js'
],
dest: 'app/scripts.js'
}
}