UNPKG

1.41 kBMarkdownView Raw
1# @prometheusresearch/react-scripts
2
3This is a fork of original `react-scripts` package customized for Prometheus
4Research projects.
5
6Few things are changed:
7
8* Added `react-scripts watch` command for watching source code changes and
9 writing bundle to filesystem.
10* `babel-preset-prometheusresearch` is used instead of `babel-preset-react-app`
11 (still the former is based on the latter but with added support for decorator
12 syntax and export extensions).
13* Changed module resolution to allow symlinked packages to resolve their
14 dependencies properly.
15* Few cosmetic changes like less nested default bundle names.
16
17The following environment variables are introduced:
18
19* `REACT_SCRIPTS_BUILD` (optional) is used to control the bundle output
20 directory.
21* `REACT_SCRIPTS_NON_INTERACTIVE` (optional) is used to suppress interactive CLI
22 interface (for example disabling clearing terminal).
23
24# react-scripts
25
26This package includes scripts and configuration used by [Create React App](https://github.com/facebookincubator/create-react-app).<br>
27Please refer to its documentation:
28
29* [Getting Started](https://github.com/facebookincubator/create-react-app/blob/master/README.md#getting-started) – How to create a new app.
30* [User Guide](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md) – How to develop apps bootstrapped with Create React App.