Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 1.67 KB

SBVR_README.md

File metadata and controls

43 lines (34 loc) · 1.67 KB

SpringboardVR Custom react-vnc

This repo is not perfect and should only be temporary (probably going to last forever then). Main difference is that the React version has changed (from 17 to 16) and that the package will be hosted in the Github forked repo (not on npm registry).

Prepping Repo

Before running the custom publish script, pull any changes from upstream.

  1. Check if there is an existing upstream remote (if exists, skip to 3)
git remote -v
  1. Add upstream remote
git remote add upstream [email protected]:roerohan/react-vnc.git
  1. Pull changes (no rebasing)
git fetch upstream
git merge upstream/main
  1. Cherry pick changes from merge conflicts. No commands for this, just a manual process for the following files. Keep all edits marked by Springboard Edit:
  • prebulish.js
  • .gitignore
  1. Sync differences between package.json.bak and package.json. Again, another manual process.
  2. Run the publish:sbvr script
npm run publish:sbvr
  1. Commit changes to origin and republish Arena.
ℹ️ NOTE
Arena does not automatically rebuild the frontend when the solution is
built, this is a manual process where the frontend app has to be built
copied to the right place and then committed to the repo.