2.0.0 • Published 4 years ago

@devlop-ab/laravel-mix-manifest-webpack-plugin v2.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

laravel

This will generate a Laravel Mix compatible manifest, this is convenient if you are not using Laravel Mix but still want to use the mix helper in Laravel.

Installing

using npm

npm install @devlop-ab/laravel-mix-manifest-webpack-plugin

Usage

// in webpack.config.js
const LaravelMixManifestWebpackPlugin = require('@devlop-ab/laravel-mix-manifest-webpack-plugin');

// then add to plugins array in config
module.exports = {
    plugins: [
        new LaravelMixManifestWebpackPlugin({
            // the path to the public root 
            public: path.resolve(__dirname, 'public'),
            // the name of the output file
            name: 'mix-manifest.json',
        }),
    ],
}
2.0.0

4 years ago

1.1.0

4 years ago

1.0.3

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago