Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NMFR/optimize-css-assets-webpack-plugin
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e9b84f1eecd17218dc21b2c01360aa6c678d1c05
Choose a base ref
...
head repository: NMFR/optimize-css-assets-webpack-plugin
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 09d29b323d0befd900f4691967033dbab480b389
Choose a head ref
  • 3 commits
  • 6 files changed
  • 1 contributor

Commits on Oct 21, 2020

  1. Copy the full SHA
    41d1e23 View commit details

Commits on May 16, 2021

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    d0a7da7 View commit details
  2. 5.0.5

    NMFR committed May 16, 2021
    Copy the full SHA
    09d29b3 View commit details
Showing with 16,857 additions and 6,371 deletions.
  1. +2 −0 README.md
  2. +16,841 −6,365 package-lock.json
  3. +4 −3 package.json
  4. +8 −1 src/index.js
  5. +1 −1 test/__snapshots__/webpack-integration.test.js.snap
  6. +1 −1 test/cases/only-assetNameRegExp-processed/expected/optimize.css
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,8 @@

A Webpack plugin to optimize \ minimize CSS assets.

> :warning: For webpack v5 or above please use [css-minimizer-webpack-plugin](https://github.com/webpack-contrib/css-minimizer-webpack-plugin) instead.
## What does the plugin do?

It will search for CSS assets during the Webpack build and will optimize \ minimize the CSS (by default it uses [cssnano](http://github.com/ben-eb/cssnano) but a custom CSS processor can be specified).
Loading