As far as I know it's ascending order and not asynchronous! At least when you run npm run dev. I believe with npm run watch it will only run the tasks that are connected to a certain file that has changed, but that might be async for speed!
Jun 5, 2018
3
Level 3
Laravel Mix 2.1
Laravel mix executing tasks by ascending order? For example:
mix.js('resources/assets/js/app.js', 'public/js')
.combine(['public/js/app.js', 'node_modules/owl.carousel/dist/owl.carousel.js'], 'public/js/app.js')
It would first launch js task, then combine it, right? Not like gulp (asynchronous)?
Level 88
1 like
Please or to participate in this conversation.