Adds a dump() method to laravel-mix, to dump the webpack config and the Mix object.
let mix = require('laravel-mix');
require('laravel-mix-dump');
// ...
mix.js('resources/js/app.js', 'public/js')
.sass('resources/sass/app.scss', 'public/css')
.dump();Before you get started, make sure you're using laravel-mix version 4 or higher.
You can install the package with yarn or npm:
yarn add laravel-mix-dumpnpm install laravel-mix-dumpThen install the extension by requiring the module in your Mix configuration.
let mix = require('laravel-mix');
require('laravel-mix-dump');
// ...dump can then be enabled by calling .dump() in your Mix chain.
mix.js('resources/js/app.js', 'public/js')
.sass('resources/sass/app.scss', 'public/css')
.dump();Custom options can be passed when calling dump if necessary.
mix.js('resources/js/app.js', 'public/js')
.sass('resources/sass/app.scss', 'public/css')
.dump({depth:2, die: true});Please see CHANGELOG for more information what has changed recently.
Please see CONTRIBUTING for details.
The MIT License (MIT). Please see License File for more information.