-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Way to specify 'the rest'? #22
Comments
I'm doing something very similar. var dependencies = gulp.src(mainBowerFiles('**/*'), { read: false })
.pipe(order([
'normalize.css'
])); trying to get normalize to order first while respecting the original sort order, which doesn't seem to be working... Any progress on this? |
That should work for you guys. Let me know if you're still interest/have any problems with it and I can offer some help. It took me a while to figure it out on my own. gulp-order seems to work perfectly fine the docs just aren't the most clear on how to get this to work. |
So in my example it would look something like var dependencies = gulp.src(mainBowerFiles('**/*'), { read: false })
.pipe(order([
'**/normalize.css',
'**/*'
])); |
Yes that would probably work, I've never done it without file extensions but it looks good. |
Yeah that worked, thanks! |
Hi guys, hi @Gobd
|
Trying to get jQuery to load first so the rest of its dependencies will work. The issue is I'm using this in conjunction with main-bower-files. Is there a way to say: load jQuery first and then put everything else after that?
Thank you!
Matt
The text was updated successfully, but these errors were encountered: