@habitat-ai/cli 0.5.7 → 0.5.9
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 +11 -0
- package/oclif.manifest.json +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -46,3 +46,14 @@ bunx nx migrate --run-migrations
|
|
|
46
46
|
The first command updates the fixed CLI/SDK pair and writes any applicable
|
|
47
47
|
Habitat migrations. The final command applies those package-owned repository
|
|
48
48
|
changes; no consumer copies or independently maintains the preset wiring.
|
|
49
|
+
|
|
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, scope Nx's documented
|
|
52
|
+
compatibility flag to the migration-generation command only:
|
|
53
|
+
|
|
54
|
+
```sh
|
|
55
|
+
NX_MIGRATE_CLI_VERSION=23.1.1 NX_SKIP_PROVENANCE_CHECK=true \
|
|
56
|
+
bunx nx migrate @habitat-ai/cli@0.5.9
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
Nx `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.9",
|
|
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.9",
|
|
64
64
|
"@nx/devkit": "23.1.1",
|
|
65
65
|
"@oclif/core": "^4.13.2",
|
|
66
66
|
"@oclif/plugin-help": "^6.2.27",
|