html-webpack-inject-temp-afteremit-plugin
v0.0.2
Published
给打包后的html文件替换指定内容 using webpack, HTMLWebpackPlugin
Downloads
2
Maintainers
Readme
替换文件内容插件
Installation
You must be running webpack on node 6.4 or higher
Install the plugin with npm:
$ npm install --save-dev html-webpack-inject-temp-afteremit-plugin
Install the plugin with yarn:
$ yarn add --dev html-webpack-inject-temp-afteremit-plugin
Basic Usage
Require the plugin in your webpack config:
var HtmlWebpackInjectTempalfterEmitPlugin = require('html-webpack-inject-temp-afteremit-plugin');
Add the plugin to your webpack config as follows:
{
...
plugins: [
new HtmlWebpackPlugin(),
new HtmlWebpackInjectTempalfterEmitPlugin({
targetStr: `替换成的内容`,
sourceStr:`要替换的内容`
}
})
]
...
}
开发
npm 包中 sudo npm link
使用的npm中 sudo npm link package-name