gulp file order
#2451
Replies: 1 comment 1 reply
-
Sorting a stream is extremely expensive/slow, so we attempt to push files in the order they are globbed from your filesystem. Since filesystems behave differently, that is likely the cause of this issue for you. Since you require them to be in a specific order, the performance penalty probably is less of an issue for you. I recommend using https://www.npmjs.com/package/gulp-sort to sort your files before you pass them to the plugin where they need to be ordered in a specific way. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
gulp file order is different between windows and linux. on linux it is working as intended but windows mix up the file order and cause the app not to work. (there are about 100 files - ordering manually is not an option).
Beta Was this translation helpful? Give feedback.
All reactions