ks-html-webpack-inline-source-plugin
TypeScript icon, indicating that this package has built-in type declarations

1.0.3 • Public • Published

Inline Source extension for the HTML Webpack Plugin

npm version

修复点:

原有 html-webpack-inline-source-plugin 在配合 html-webpack-plugin 时,传入的参数 filename 必须为xxx.html的文件名形式,如果写成xxx/xxx.html如下方代码,则会报错:

new HtmlWebpackPlugin({
    template: 'index.html`,
    filename: `${name}/index.html`,
    chunks: [`${name}`],
    inlineSource: '.(js|css)$',
    minify: {
        removeComments: true,
        collapseWhitespace: true,
        removeAttributeQuotes: true,
    },
});

报错信息:

TypeError: Cannot read property 'source' of undefined

对应 issues:https://github.com/DustinJackson/html-webpack-inline-source-plugin/issues/57

Enhances html-webpack-plugin functionality by adding the {inlineSource: 'regex string'} option.

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 ks-html-webpack-inline-source-plugin

Basic Usage

Require the plugin in your webpack config:

var HtmlWebpackInlineSourcePlugin = require("ks-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:

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

Package Sidebar

Install

npm i ks-html-webpack-inline-source-plugin

Weekly Downloads

1

Version

1.0.3

License

none

Unpacked Size

8.75 kB

Total Files

4

Last publish

Collaborators

  • bunko