Releases: BeameryHQ/bmr-react-scripts
v3.0.1-d
v3.0.1-c
v3.0.1-b
- Removes Beamery's custom
tsconfig.json
overrides, and implements baseUrl injsconfig.json
. See below for instructions. - Contains an update to
fsevents
.
Upgrade instructions for NODE_PATH
:
There's nothing to do when creating a new project, templates have been updated.
For existing TypeSript projects, you can now remove NODE_PATH
from your .env
file, and update your tsconfig.json
to have a baseUrl
of "src"
. The paths
key can be removed.
For existing JavaScript projects, you can add a jsconfig.json
file with baseUrl
set to "src"
. For best results, copy this new file from the template.
New versions of Storybook will work with this. Old versions require NODE_PATH
. You may also opt to pass this in via the script: NODE_PATH=src start-storybook
.
v3.0.1-a
Important: This package is now published to Verdaccio - @beamery/react-scripts
.
Please check your project for any references to bmr-react-scripts
and replace those with @beamery/react-scripts
. You should have at least one instance in the Jest setup file, but use find and replace to be sure.
v2.1.5-b
v2.1.5-a
v2.1.3-c
v2.1.3-b
v2.1.3-a
- Adds watch for local development mode (thanks @njsfield).
- Scripts are now simplified (see below).
Relevant scripts can now be simplified to the below. Environment variables are now set inside of bmr-react-scripts
.
"start": "react-scripts start-dev",
"start-independent": "react-scripts start",
"build": "react-scripts build",
"build-dev": "react-scripts build-dev",
"build-staging": "react-scripts build-stg",
[email protected]
- Adds a workaround for Storybook failing to resolve the new
react-scripts
single Webpack config.