clavue 8.28.14 → 8.28.15
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 +9 -7
- package/dist/cli.js +213 -212
- package/dist/mao-command.js +1 -1
- package/dist/openai-responses-adapter.js +2 -2
- package/dist/provider-setup.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Clavue v8.28.
|
|
1
|
+
# Clavue v8.28.15
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|
|
|
@@ -64,8 +64,8 @@ npx -y clavue
|
|
|
64
64
|
Run a specific version with `npx`:
|
|
65
65
|
|
|
66
66
|
```bash
|
|
67
|
-
npx -y clavue@8.28.
|
|
68
|
-
npx -y clavue@8.28.
|
|
67
|
+
npx -y clavue@8.28.15 --version
|
|
68
|
+
npx -y clavue@8.28.15
|
|
69
69
|
```
|
|
70
70
|
|
|
71
71
|
Install globally from npm when you want the `clavue` command to stay available:
|
|
@@ -85,7 +85,7 @@ curl -fsSL https://unpkg.com/clavue/install.sh | bash
|
|
|
85
85
|
Install a specific version globally:
|
|
86
86
|
|
|
87
87
|
```bash
|
|
88
|
-
curl -fsSL https://unpkg.com/clavue@8.28.
|
|
88
|
+
curl -fsSL https://unpkg.com/clavue@8.28.15/install.sh | bash -s -- 8.28.15
|
|
89
89
|
```
|
|
90
90
|
|
|
91
91
|
### Troubleshooting: `ENOTEMPTY` / `bash: clavue: No such file or directory`
|
|
@@ -340,6 +340,7 @@ npm run verify:source-build
|
|
|
340
340
|
npm run check:source-purity
|
|
341
341
|
npm test
|
|
342
342
|
npm run check
|
|
343
|
+
npm run check:release
|
|
343
344
|
npm run build
|
|
344
345
|
npm run package:release
|
|
345
346
|
```
|
|
@@ -350,9 +351,10 @@ npm run package:release
|
|
|
350
351
|
- `npm run verify:source-build`: rebuilds from `src/` into `experimental-dist/` and requires `--version` plus `--help` to boot under Node
|
|
351
352
|
- `npm run check:source-purity`: fails on inline source maps, compiler-transformed React output, generated stubs, or generated types inside `src/`
|
|
352
353
|
- `npm test`: runs packaging and release regression tests with Node's built-in test runner
|
|
353
|
-
- `npm run check`:
|
|
354
|
-
- `npm run
|
|
355
|
-
- `npm run
|
|
354
|
+
- `npm run check`: quick local verification gate used by CI for normal pushes and PRs
|
|
355
|
+
- `npm run check:release`: full release verification gate with vendoring, clean dist verification, dist smoke, source rebuild, source purity, boundaries, and tests
|
|
356
|
+
- `npm run build`: runs `check:release` and previews the publishable npm tarball with `npm pack --dry-run`
|
|
357
|
+
- `npm run package:release`: runs `check:release` and produces archives in `release-artifacts/`
|
|
356
358
|
- `npm run rebuild:experimental`: manual alias for `npm run verify:source-build`
|
|
357
359
|
- `npm run rebuild:experimental:legacy`: older reconstruction path kept for manual investigation
|
|
358
360
|
|