diff options
author | Matthew Miller <matthew@millerti.me> | 2023-08-23 09:08:44 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2023-08-23 09:08:44 -0700 |
commit | 4d9bcd0ee1731e30b0659cd137c026272d8460da (patch) | |
tree | 11e58ee588037c3c2de42e6c0bd3d6357f030426 | |
parent | fb30fc9039a3bee75d28dba90a07d263b4695444 (diff) |
Make the headers in Handbook nicer
-rw-r--r-- | HANDBOOK.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/HANDBOOK.md b/HANDBOOK.md index a959512..aa7beca 100644 --- a/HANDBOOK.md +++ b/HANDBOOK.md @@ -4,7 +4,7 @@ Notes for myself that I don't want cluttering up the README ## Deployment Process -### Determine which packages need to be published +### Step 1: Determine which packages need to be published ``` npx lerna version --no-push @@ -19,22 +19,22 @@ What packages need to be published? 1. - [ ] server -### 1. Need to publish typescript-types? +### Step 2: Need to publish `typescript-types`? ``` pnpm run build:types && (cd packages/typescript-types/npm; pnpm publish) ``` -### 2. Need to publish browser? +### Step 3: Need to publish `browser`? ``` pnpm run build:browser && (cd packages/browser; pnpm publish) ``` -### 3. Need to publish Server? +### Step 4: Need to publish `server`? 1. - - [ ] Make sure the correct version of typescript-types is on NPM + - [ ] 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 of `typescript-types` specified in `mappings` in **build_npm.ts** is unavailable. |