Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

watch-source-code-plugin

raodurgesh62ISC1.0.7

Source code files used by webpack-dev-server is rendered in watch mode at user specified directory through override create-react-app webpack configs without ejecting

react-app-rewire, symlink, source-code, webpack, plugin, webpack-dev-server, over-ride-webpack-dev-server, write, file

readme

watch-source-code-plugin

Source code files used by webpack-dev-server is rendered in watch mode at user specified directory through override create-react-app webpack configs without ejecting.

Installation

yarn add --dev watch-source-code-plugin

or

npm install --save-dev  watch-source-code-plugin

Usage

In the config-overrides.js (refer : react-app-rewired) you created for watch-source-code-plugin add this code:

const { rewireSourceCodeBundle } = require('watch-source-code-plugin');

/* config-overrides.js */
module.exports = function override(config, env) {
  return rewireSourceCodeBundle(config, env, { publicPath : '<path of render directory i.e. '../server/build' >' });
}

Inspirations

write-file-webpack-plugin by @gajus