Additions
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 yourmix-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 - Node 6 or higher is required d280667
- The
friendly-errors-webpack-plugin
plugin specifically wants aquiet: true
option fordevServer
58c35dc - 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.
. Soapp.js
would minify toapp.min.js
.