Great update, i guess most of use already use "assets" folder.
Important Elixir Folder Change
Hey, everyone -
Quick note that I'm about to push an Elixir update that will change the base directory for your JavaScript and CSS files. Currently, the default is set to resources/js and resources/css, respectively; however, we're changing this to be more in line with your other assets, like Sass and CoffeeScript files.
So, now, the default locations will be resources/assets/js and resources/assets/css. If/When you update Elixir, be sure to check your Gulpfile to see if you need to update any paths.
And, of course, if you want to stick with the original default locations, you can override the base directory, like so:
mix.scripts(['one.js', 'two.js'], null, './resources/js');
It's possible that you're already doing this. If so, you don't need to do anything.
The third argument to both scripts() and styles() is for overriding the base directory. Okay, I'll push this change up right now.

Please or to participate in this conversation.

