@habitat-ai/cli 0.5.12 → 0.5.14

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 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.12
70
+ bunx nx migrate @habitat-ai/cli@0.5.14
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
@@ -1,6 +1,7 @@
1
1
  import { posix } from "node:path";
2
2
  const HABITAT_CATALOG_PATHS = [
3
3
  ".habitat/blueprints/*/blueprint.toml",
4
+ ".habitat/blueprints/*/versions/*/blueprint.toml",
4
5
  ".habitat/index.json",
5
6
  ".habitat/**/rule.json",
6
7
  "**/habitat.toml",
@@ -229,7 +230,12 @@ function applicationInputs(application, runtimeInputs) {
229
230
  if (application.runner.name === "grit") {
230
231
  addLocalAssetInput(files, application.runner.pattern);
231
232
  for (const entry of application.runner.acquisition.entries) {
232
- addSubjectInputs(files, entry.path, entry.kind);
233
+ if (entry.source.kind === "root-pattern") {
234
+ files.add(workspaceInput(entry.path));
235
+ }
236
+ else {
237
+ addSubjectInputs(files, entry.path, entry.kind);
238
+ }
233
239
  }
234
240
  }
235
241
  else {
@@ -2,7 +2,7 @@ schemaVersion = 1
2
2
  id = <%- nameLiteral %>
3
3
  ownerProject = <%- nameLiteral %>
4
4
  blueprint = "service"
5
- blueprintVersion = 1
5
+ blueprintVersion = 2
6
6
 
7
7
  [roots]
8
8
  project = <%- directoryLiteral %>
@@ -99,5 +99,5 @@
99
99
  ]
100
100
  }
101
101
  },
102
- "version": "0.5.12"
102
+ "version": "0.5.14"
103
103
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@habitat-ai/cli",
3
- "version": "0.5.12",
3
+ "version": "0.5.14",
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.12",
64
+ "@habitat-ai/sdk": "0.5.14",
65
65
  "@nx/devkit": "23.1.1",
66
66
  "@oclif/core": "^4.13.2",
67
67
  "@oclif/plugin-help": "^6.2.27",