0.1.0 • Published 4 years ago

laravel-mix-clean v0.1.0

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

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).