/webpack-child-config-plugin

A webpack plugin that runs/watches another config

Primary LanguageJavaScriptMIT LicenseMIT

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