Skip to content

diegohaz/webpack-child-config-plugin

Repository files navigation

webpack-child-config-plugin

Generated with nod NPM version Build Status Coverage Status

A webpack plugin that runs/watches another config

Install

$ npm install --save-dev webpack-child-config-plugin

Usage

import ChildConfigPlugin from 'webpack-child-config-plugin'

const serverConfig = {
  ...
  watch: true
  ...
}

const clientConfig = {
  ...
  plugins: [
    new ChildConfigPlugin(serverConfig, {
      // these are the defaults, you can override them
      watch: serverConfig.watch,
      when: 'done',
      compilerCallback: () => {}
    })
  ]
}

License

MIT © Diego Haz

About

A webpack plugin that runs/watches another config

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published