Skip to content

Instantly share code, notes, and snippets.

View vadim7j7's full-sized avatar
💡
Programming is thinking, not typing.

Vadim vadim7j7

💡
Programming is thinking, not typing.
View GitHub Profile
@vadim7j7
vadim7j7 / watcher.js
Created October 21, 2018 17:14
Script watcher for react-create-app
// put it to scripts/watch.js
// add - "watch": "node scripts/watch.js", into package.json in section scripts
process.env.NODE_ENV = "development";
const fs = require("fs-extra");
const paths = require("react-scripts/config/paths");
const webpack = require("webpack");
const config = require("react-scripts/config/webpack.config.dev.js");