1.0.0 • Published 5 years ago

html-webpack-inline-source-plugin-custom-tag-attributes v1.0.0

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

html-webpack-inline-source-plugin with custom script tag attributes

Fork of html-webpack-inline-source-plugin by Dustin Jackson

Fork features

Too add custom attribute to script tag, in your webpack configuration file invoke function

Install the plugin with npm:

const myCustomAttributes = {
    "YourCustomAttribute": 'value',
     // ... More attributes  
};

//...
new HtmlWebpackInlineSourcePlugin(HtmlWebpackPlugin, myCustomAttributes),
//...

This is an extension plugin for the webpack plugin html-webpack-plugin (version 4 or higher). It allows you to embed javascript and css source inline.

Installation

You must be running webpack on node 6 or higher.

Install the plugin with npm:

$ npm install --save-dev html-webpack-inline-source-plugin

Basic Usage

Require the plugin in your webpack config:

var HtmlWebpackInlineSourcePlugin = require('html-webpack-inline-source-plugin');

Add the plugin to your webpack config as follows:

plugins: [
  new HtmlWebpackPlugin(),
  new HtmlWebpackInlineSourcePlugin()
]  

The above configuration will actually do nothing due to the configuration defaults.

When you set inlineSource to a regular expression the source code for any javascript or css file names that match will be embedded inline in the resulting html document.

plugins: [
  new HtmlWebpackPlugin({
		inlineSource: '.(js|css)$' // embed all javascript and css inline
	}),
  new HtmlWebpackInlineSourcePlugin()
]  

Sourcemaps

If any source files contain a sourceMappingURL directive that isn't a data URI, then the sourcemap URL is corrected to be relative to the domain root (unless it already is) instead of to the original source file.

All sourcemap comment styles are supported:

  • //# ...
  • //@ ...
  • /*# ...*/
  • /*@ ...*/