content-replace-webpack-plugin

1.0.0 • Public • Published

content-replace-webpack-plugin Build Status npm version

NPM

simple and efficient plugin that replace assets content when webpack emit files

Install

npm install content-replace-webpack-plugin --save--dev

Usage

add plugin in your webpack.config.js

var ContentReplacePlugin = require('content-replace-webpack-plugin')
 
module.exports = {
    entry:{
        index:"./index.js"
    },
    module:{
        loaders:[
            ...
        ]
    },
    output:{
        path:'./dist',
        filename:'[name].min.js'
    },
    plugins:[
        new ContentReplacePlugin({
          external: ['path/to/other/file'], // other files which not in webpack assets
          chunks: ['index'],
          rules: {
            '.js': content => content.replace('/foo', '/bar')
          }
        })
    ]
}

Plugin Options

  • external: other files which not in webpack assets
  • rules: replace rules, accept object which key is file extname and value is replace function
  • chunks: only these chunks's files will be replaced, default value is all

License

MIT License

Readme

Keywords

none

Package Sidebar

Install

npm i content-replace-webpack-plugin

Weekly Downloads

587

Version

1.0.0

License

MIT

Unpacked Size

8.02 kB

Total Files

11

Last publish

Collaborators

  • alichen