Notes for myself that I don't want cluttering up the README
pnpm run update-version
What packages need to be published?
-
- typescript-types
-
- browser
-
- server
pnpm run build:types && (cd packages/typescript-types/npm; pnpm publish)
pnpm run build:browser && (cd packages/browser; pnpm publish)
-
- Make sure the correct version of
typescript-types
is on NPM - The
npm install
step that dnt performs while building the project pulls from NPM. The build will fail if the version oftypescript-types
specified inmappings
in build_npm.ts is unavailable.
- Make sure the correct version of
pnpm run build:server && (cd packages/server/npm; pnpm publish)
Don't forget to push up the latest changes to origin
when everything's been published!