@habitat-ai/cli 0.5.11 → 0.5.12

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.11
70
+ bunx nx migrate @habitat-ai/cli@0.5.12
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
@@ -175,6 +175,7 @@ function applicationTarget(application, runtimeInputs) {
175
175
  return {
176
176
  command: `${HABITAT_EXECUTABLE} check --instance ${application.instanceId} --rule ${application.ruleId}`,
177
177
  cache: true,
178
+ parallelism: false,
178
179
  inputs: applicationInputs(application, runtimeInputs),
179
180
  outputs: [],
180
181
  options: { cwd: "{workspaceRoot}" },
@@ -187,6 +188,7 @@ function compatibilityTarget(rule, runtimeInputs) {
187
188
  return {
188
189
  command: `${HABITAT_EXECUTABLE} check --rule ${rule.ruleId}`,
189
190
  cache: true,
191
+ parallelism: false,
190
192
  inputs: compatibilityInputs(rule, runtimeInputs),
191
193
  outputs: [],
192
194
  options: { cwd: "{workspaceRoot}" },
@@ -200,6 +202,7 @@ function ownerTarget(ownerProject, inputs, hasCompatibility) {
200
202
  return {
201
203
  command: `${HABITAT_EXECUTABLE} check --owner ${ownerProject}`,
202
204
  cache: true,
205
+ parallelism: false,
203
206
  inputs,
204
207
  outputs: [],
205
208
  options: { cwd: "{workspaceRoot}" },
@@ -99,5 +99,5 @@
99
99
  ]
100
100
  }
101
101
  },
102
- "version": "0.5.11"
102
+ "version": "0.5.12"
103
103
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@habitat-ai/cli",
3
- "version": "0.5.11",
3
+ "version": "0.5.12",
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.11",
64
+ "@habitat-ai/sdk": "0.5.12",
65
65
  "@nx/devkit": "23.1.1",
66
66
  "@oclif/core": "^4.13.2",
67
67
  "@oclif/plugin-help": "^6.2.27",