@habitat-ai/cli 0.5.12 → 0.5.13
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 +1 -1
- package/dist/nx/projection.js +6 -1
- package/oclif.manifest.json +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -67,7 +67,7 @@ the final command applies the repository changes:
|
|
|
67
67
|
|
|
68
68
|
```sh
|
|
69
69
|
NX_MIGRATE_CLI_VERSION=23.1.1 NX_SKIP_PROVENANCE_CHECK=true \
|
|
70
|
-
bunx nx migrate @habitat-ai/cli@0.5.
|
|
70
|
+
bunx nx migrate @habitat-ai/cli@0.5.13
|
|
71
71
|
bun install
|
|
72
72
|
NX_MIGRATE_CLI_VERSION=23.1.1 NX_SKIP_PROVENANCE_CHECK=true \
|
|
73
73
|
bunx nx migrate --run-migrations=migrations.json --no-interactive
|
package/dist/nx/projection.js
CHANGED
|
@@ -229,7 +229,12 @@ function applicationInputs(application, runtimeInputs) {
|
|
|
229
229
|
if (application.runner.name === "grit") {
|
|
230
230
|
addLocalAssetInput(files, application.runner.pattern);
|
|
231
231
|
for (const entry of application.runner.acquisition.entries) {
|
|
232
|
-
|
|
232
|
+
if (entry.source.kind === "root-pattern") {
|
|
233
|
+
files.add(workspaceInput(entry.path));
|
|
234
|
+
}
|
|
235
|
+
else {
|
|
236
|
+
addSubjectInputs(files, entry.path, entry.kind);
|
|
237
|
+
}
|
|
233
238
|
}
|
|
234
239
|
}
|
|
235
240
|
else {
|
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.13",
|
|
4
4
|
"private": false,
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"test": "vitest run --project habitat-cli"
|
|
62
62
|
},
|
|
63
63
|
"dependencies": {
|
|
64
|
-
"@habitat-ai/sdk": "0.5.
|
|
64
|
+
"@habitat-ai/sdk": "0.5.13",
|
|
65
65
|
"@nx/devkit": "23.1.1",
|
|
66
66
|
"@oclif/core": "^4.13.2",
|
|
67
67
|
"@oclif/plugin-help": "^6.2.27",
|