Skip to content
This repository has been archived by the owner on Jul 24, 2019. It is now read-only.

Releases: BeameryHQ/bmr-react-scripts

v3.0.1-d

15 Jul 13:39
Compare
Choose a tag to compare
  • Updated templates to support recommended single-spa-react configuration.
  • Moved README file to react-scripts so that it publishes to Verdaccio.
  • Added warnings to files that should not be changed by developers.

v3.0.1-c

24 Jun 11:15
Compare
Choose a tag to compare
  • Added support for code-splitting on all environments excluding staging.

v3.0.1-b

30 May 08:07
Compare
Choose a tag to compare
  • Removes Beamery's custom tsconfig.json overrides, and implements baseUrl in jsconfig.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

28 May 09:28
Compare
Choose a tag to compare

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

20 Mar 11:24
Compare
Choose a tag to compare
  • Updated the filename of the exported bundle from start-dev.

v2.1.5-a

15 Feb 09:30
Compare
Choose a tag to compare
  • Updated to react-scripts v2.1.5.
  • Includes all changes from v2.1.4, as we didn't release a version for this due to a bug.
  • Has temporary fix for create-react-app bug #6398.

v2.1.3-c

14 Feb 15:05
Compare
Choose a tag to compare
  • Added CI_PIPELINE_ID environment variable.
  • Added limit set of aliases (for legacy Beamery compatibility).

v2.1.3-b

05 Feb 09:17
Compare
Choose a tag to compare
  • Updated scripts to output unminified code for development builds.

v2.1.3-a

10 Jan 13:58
Compare
Choose a tag to compare
  • 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]

21 Dec 14:15
Compare
Choose a tag to compare
  • Adds a workaround for Storybook failing to resolve the new react-scripts single Webpack config.