Clean Css

Extension for Laravel Mix that provides clean-css support.
latest v1.3.1 - released
marceickhoff
22 downloads last week
MIT license
6 versions
clean-css
clean-css-loader
webpack-cli

Laravel Mix clean-css

Latest Version on NPM npm Software License

This extension adds support for clean-css to Laravel Mix by using the clean-css-loader.

Installation

npm i -D laravel-mix-clean-css

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-css');

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

  // Run clean-css on all stylesheets
  .cleanCss({
    level: 2,
    format: mix.inProduction() ? false : 'beautify' // Beautify only in dev mode
  })

  // Run clean-css only on one specific stylesheet
  .cleanCss({
    // ...
  }, 'src/app.scss')

  // Run clean-css only on multiple specific stylesheets
  .cleanCss({
    // ...
  }, [
    'src/app.scss',
    'src/app.sass',
  ])

For more information about clean-css configurations please refer to their documentation.