0.0.4 • Published 5 years ago

inline-style-ext-html-webpack-plugin v0.0.4

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

Inline Style Extension for the HTMLWebpackPlugin

This package extends the html-webpack-plugin functionality by inlining existing styles to HTML elements using inline-css.

You might want to use this to automate email generation with webpack.

The following input provided by the HTMLWebpackPlugin:

.my-class {
    color:red;
}
<div class="my-class"></div>

will result in

<div style="color: red;"></div>

Installation

Install the plugin with npm:

$ npm install --save-dev inline-style-ext-html-webpack-plugin

Install the plugin with yarn:

$ yarn add --dev inline-style-ext-html-webpack-plugin

Basic Usage

Require the plugin in your webpack config:

const InlineStyleExtHtmlWebpackPlugin = require('inline-style-ext-html-webpack-plugin');

Add the plugin to your webpack config as follows:

{
	...
	plugins: [
	    new HtmlWebpackPlugin(),
	    new InlineStyleExtHtmlWebpackPlugin(),
	]
	...
}
0.0.4

5 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago