mirror of
https://github.com/zebrajr/react.git
synced 2026-01-15 12:15:22 +00:00
* Move build/packages/* to build/node_modules/* This fixes Node resolution in that folder and lets us require() packages in it in Node shell for manual testing. * Link fixtures to packages/node_modules This updates the location and also uses link: instead of file: to avoid Yarn caching the folder contents.
React Release Script
At a high-level, the release script runs in 2 passes: build and publish.
- The build script does the heavy lifting (eg checking CI, running automated tests, building Rollup bundles) and then prints instructions for manual verification.
- The publish script then publishes the built artifacts to NPM and pushes to GitHub.
Run either script without parameters to see its usage, eg:
./scripts/release/build.js
./scripts/release/publish.js
Each script will guide the release engineer through any necessary steps (including environment setup and manual testing steps).