Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 576 Bytes

NODE_UPGRADES.md

File metadata and controls

15 lines (11 loc) · 576 Bytes

How to upgrade Node.js

Last updated 8/22/2022

  1. Update the version in several places:
  • package.json: engines field
  • packages/client/package.json: engines field
  • packages/server/package.json: engines field
  • .nvmrc (.node-version symlinks to this)
  • .github/workflows/ci.yaml: node-version field under Install Node.js build step
  • README.md: instructions for setting up dev environment
  1. npx lerna bootstrap to rerun yarn install in both packages

  2. Fixup any breakages with yarn install, unit tests, manual testing of the app