@coorpacademy/css-wrapper-webpack-plugin

Webpack plugin to wrap all CSS classes in a container

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
@coorpacademy/css-wrapper-webpack-plugin
1.0.87 years ago7 years agoMinified + gzip package size for @coorpacademy/css-wrapper-webpack-plugin in KB

Readme

Disclaimer: you should use this plugin with minified css only.

What it does

Providing your minified styles.css is:
.plop {opacity: .5;}.plup {height: 12px;}

the final css will be wrapped with your container
#app .plop {opacity: .5;}#app .plup {height: 12px;}

Usage

require the plugin
const WebpackCSSWrapperPlugin = require('@coorpacademy/webpack-css-wrapper');

then within your webpack plugins:
plugins: [
  new ExtractTextWebpackPlugin('styles.css'),
  new WebpackCSSWrapperPlugin('styles.css', '#app')
]