626d013547
* switch from yarn to pnpm * Remove full-nym-wasm (#6796) * Remove nym-browser-extension (#6798) * Remove nym-browser-extension * remove unused from makefile * Remove Node tester (#6800) * Remove dom-utils (#6801) * gh-actions: remove pnpm version * nuke dist and pkg * add missing dependency * set node version to 24 and pnpm version to 11 * upgrade lock file from pnpm version 9 to 11 * pnpm add approved builds * yarn -> pnpm * upgrade jest version * yarn -> pnpm * Remove unused cfg; clippy! * pnpm: when dev mode is on, unfreeze the lock file * pnpm approve more scripts * pnpm syntax error * add `pnpm i` * disable eslint temporarily while switching to biome in later PR --------- Co-authored-by: Mark Sinclair <mmsinclair@users.noreply.github.com> Co-authored-by: mfahampshire <maxhampshire@pm.me>
sdk-version-bump
simple tool to update version numbers of our sdk packages.
Usage:
note: this tool is expected to be run during CI, but if one wants to do it manually:
For releases:
- run
./sdk-version-bump remove-suffixthat will remove the-rc.Xsuffixes from all relevant packages - build everything and publish it to npm
- run
./sdk-version-bump bump-versionthat will update the versions of all relevant packages fromX.Y.ZintoX.Y.(Z+1)-rc.0. It will also update the@nymproject/...dependencies from">=X.Y.Z-rc.0 || ^X"to">=X.Y.(Z+1)-rc.0 || ^X"
For pre-releases:
- run
./sdk-version-bump bump-version --pre-releasethat will update the release candidate version of all relevant packages fromX.Y.Z-rc.WtoX.Y.Z-rc.(W+1)
To run it from the root, do: cargo run -p sdk-version-bump