summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--HANDBOOK.md10
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.