- From the root dir run
niorpnpm install - From the root dir run
nr devorpnpm dev - Open the test app on
http://localhost:3001 - Run the Startale app on port 3000 to send RPC calls over.
git remote add base https://github.com/StartaleGroup/app-sdk.git
git fetch base
git checkout base-master
git pull base master
git push origin base-masterNote: A GH action pulls the upstream once a day, so the last push command is not necessary.
- Run
pnpm login(once per machine) so your npm token is available. - Bump the version in
packages/app-sdk/package.jsonand commit the change. - (Recommended) Validate the build with
pnpm testandpnpm typecheck. - Publish with
pnpm run publish:app-sdk. This runs the package’sprepublishOnlybuild before callingpnpm publish.Note: Use
pnpm run publish:app-sdk -- --tag beta(or another tag) if you need a non-latestrelease.