npm.io
0.1.0 • Published 6 years ago

laravel-mix-clean

Licence
MIT
Version
0.1.0
Deps
0
Size
4 kB
Vulns
0
Weekly
0
Stars
4

Laravel Mix Clean

Latest Version on NPM npm Software License

This extension adds support for clean-webpack-plugin to Laravel Mix.

Installation

npm i -D laravel-mix-clean

Usage

Require the extension inside your webpack.mix.js and add clean-css configurations like this:

const mix = require('laravel-mix');

require('laravel-mix-clean');

mix
  .sass('src/app.scss', 'dist')
  .sass('src/app.sass', 'dist')
  .less('src/app.less', 'dist')
  .stylus('src/app.styl', 'dist')

  // Run default output cleaning
  .clean()

  // Run clean with
  .clean({
    // ...options
  })

For more information about clean-webpack-plugin configurations please refer to their [documentation](https://github.com/johnagan/ clean-webpack-plugin/blob/master/README.md).

Keywords