-
Notifications
You must be signed in to change notification settings - Fork 170
Open
Description
I'm using "grunt-contrib-concat": "^1.0.1"
. Here's gruntfile parts:
concat: {
options: { separator: ';' },
dist: {
src: [
'node_modules/jquery/dist/jquery.min.js',
'node_modules/bootstrap/dist/js/bootstrap.min.js',
'baller.js',
],
dest: 'app.js'
}
},
When I do more app.js
on CLI, I am expecting see "jquery.min.js" first, then "bootstrap.min.js" next, then "baller.js" last. But "baller.js" is always first, followed by bootstrap, then jquery.
If you change baller.js to "zzz.js", then "zzz.js" is the last part of app.js
Why is grunt-concat not honoring the file names order?
Metadata
Metadata
Assignees
Labels
No labels