@habitat-ai/cli 0.5.9 → 0.5.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 +10 -4
- package/oclif.manifest.json +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -48,12 +48,18 @@ Habitat migrations. The final command applies those package-owned repository
|
|
|
48
48
|
changes; no consumer copies or independently maintains the preset wiring.
|
|
49
49
|
|
|
50
50
|
Habitat `0.5.3` used Nx `23.1.0`, whose provenance reader predates npm 12. When
|
|
51
|
-
that exact historical pair is upgraded under npm 12,
|
|
52
|
-
compatibility flag to
|
|
51
|
+
that exact historical pair is upgraded under npm 12, pin the migration CLI and
|
|
52
|
+
scope Nx's documented compatibility flag to both migration commands. The first
|
|
53
|
+
command generates the migration; the install materializes the released pair;
|
|
54
|
+
the final command applies the repository changes:
|
|
53
55
|
|
|
54
56
|
```sh
|
|
55
57
|
NX_MIGRATE_CLI_VERSION=23.1.1 NX_SKIP_PROVENANCE_CHECK=true \
|
|
56
|
-
bunx nx migrate @habitat-ai/cli@0.5.
|
|
58
|
+
bunx nx migrate @habitat-ai/cli@0.5.10
|
|
59
|
+
bun install
|
|
60
|
+
NX_MIGRATE_CLI_VERSION=23.1.1 NX_SKIP_PROVENANCE_CHECK=true \
|
|
61
|
+
bunx nx migrate --run-migrations=migrations.json --no-interactive
|
|
57
62
|
```
|
|
58
63
|
|
|
59
|
-
Nx `23.1.
|
|
64
|
+
Only the historical Nx `23.1.0` upgrade needs that compatibility scope. Nx
|
|
65
|
+
`23.1.1` and later verify provenance normally.
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@habitat-ai/cli",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.10",
|
|
4
4
|
"private": false,
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"test": "vitest run --project habitat-cli"
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
|
-
"@habitat-ai/sdk": "0.5.
|
|
63
|
+
"@habitat-ai/sdk": "0.5.10",
|
|
64
64
|
"@nx/devkit": "23.1.1",
|
|
65
65
|
"@oclif/core": "^4.13.2",
|
|
66
66
|
"@oclif/plugin-help": "^6.2.27",
|