Skip to content
This repository has been archived by the owner on Feb 21, 2021. It is now read-only.

FullHuman/rollup-plugin-purgecss

Repository files navigation

rollup-plugin-purgecss

Build Status CircleCi dependencies Status devDependencies Status Codacy Badge npm license Greenkeeper badge

Rollup plugin to remove unused css.

Install

npm i rollup-plugin-purgecss -D

Usage

import { rollup } from 'rollup';
import purgecss from 'rollup-plugin-purgecss';

rollup({
    entry: 'main.js',
    plugins: [
        purgecss({
            content: ["index.html"]
        })
    ]
});

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

Versioning

We use SemVer for versioning.

License

This project is licensed under the MIT License - see the LICENSE file for details