@outcomeeng/spx 0.6.9 → 0.6.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +17 -0
- package/dist/cli.js +917 -239
- package/dist/cli.js.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -194,6 +194,23 @@ npm view @outcomeeng/spx version
|
|
|
194
194
|
npm audit signatures
|
|
195
195
|
```
|
|
196
196
|
|
|
197
|
+
8. Refresh the operator-visible CLI from the release tag in the main worktree
|
|
198
|
+
and confirm it reports the released version:
|
|
199
|
+
|
|
200
|
+
```bash
|
|
201
|
+
git fetch --tags origin
|
|
202
|
+
git switch --detach vX.Y.Z
|
|
203
|
+
pnpm run build
|
|
204
|
+
spx --version
|
|
205
|
+
git switch main
|
|
206
|
+
git pull --ff-only origin main
|
|
207
|
+
```
|
|
208
|
+
|
|
209
|
+
Do not refresh the CLI with `pnpm install`, global `pnpm add -g`, or package
|
|
210
|
+
manager update commands during release close-out. The operator-visible binary
|
|
211
|
+
comes from the release tag after the main worktree checks out that tag and
|
|
212
|
+
rebuilds it; return the worktree to current main after the version check.
|
|
213
|
+
|
|
197
214
|
## Technical Stack
|
|
198
215
|
|
|
199
216
|
- TypeScript — type-safe implementation (ESM)
|