You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mix.combine() will now watch all provided source files for changes, and then automatically re-concatenate them quickly.
When running mix.combine(), we now append the output path to your mix-manifest.json file. This normally wouldn't happen, because concatenation isn't part of your normal Webpack bundle. But we're manually appending it to the file for convenience. 9098035
Fixes
Fixed an issue with mix.combine() that caused output paths that included nested directories that don't exist to fail. We now recursively create the directory structure if it doesn't exist yet. 8870ff1
The friendly-errors-webpack-plugin plugin specifically wants a quiet: true option for devServer58c35dc
When running mix.minify(), we no longer operate directly on the provided file. That made no sense. Instead, we output a new file to the same directory, and suffix .min.. So app.js would minify to app.min.js.