lin-wcer
TypeScript icon, indicating that this package has built-in type declarations

1.1.1 • Public • Published

Webpack Chrome Extension Reloader npm version

Webpack Chrome Extension Reloade images

  • Creates a manifest.json
  • Reload only the chunk not all files.
  • Restarts the chrome extension if has changed manifest.js, content_scripts.js, background.scripts
  • background, content_scripts, devtools, options, popup, tab

Installation

npm install wcer --save-dev
// or
yarn add wcer --dev

Usage

Add wcer to the plugins section of your webpack configuration file.

const path  = require('path');
const ChromeReloadPlugin  = require('wcer');
 
module.exports = {
//...
    plugins: [
      new ChromeReloadPlugin({
        port: 9090, //optional, default: 9090
        manifest: path.join(__dirname, '..', 'src', 'manifest.js')
      })
    ] 
//...
}

Example

Package Sidebar

Install

npm i lin-wcer

Weekly Downloads

1

Version

1.1.1

License

MIT

Unpacked Size

200 kB

Total Files

16

Last publish

Collaborators

  • just_lin