@inference/cli 0.0.9-beta.20 → 0.0.10-beta.26

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -222,7 +222,7 @@ On a qualifying push or manual dispatch, the workflow:
222
222
  1. Validates that the run is on `development` or `main`
223
223
  2. Reads the stable base version from `apps/inf-cli/package.json`
224
224
  3. Computes the publish version for the target environment
225
- 4. Runs INF-CLI unit tests and `bun tsc --noEmit`
225
+ 4. Runs INF-CLI unit tests and `bun run tsc`
226
226
  5. Builds the umbrella CLI plus all four platform binaries
227
227
  6. Creates a staged publish artifact and rewrites package versions only inside staging
228
228
  7. Validates each staged package with `npm pack --dry-run`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inference/cli",
3
- "version": "0.0.9-beta.20",
3
+ "version": "0.0.10-beta.26",
4
4
  "description": "Inference.net CLI - manage training runs, evals, datasets, and inferences from your terminal",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -26,10 +26,10 @@
26
26
  "ai"
27
27
  ],
28
28
  "optionalDependencies": {
29
- "@inference/cli-darwin-arm64": "0.0.9-beta.20",
30
- "@inference/cli-darwin-x64": "0.0.9-beta.20",
31
- "@inference/cli-linux-x64": "0.0.9-beta.20",
32
- "@inference/cli-linux-arm64": "0.0.9-beta.20"
29
+ "@inference/cli-darwin-arm64": "0.0.10-beta.26",
30
+ "@inference/cli-darwin-x64": "0.0.10-beta.26",
31
+ "@inference/cli-linux-x64": "0.0.10-beta.26",
32
+ "@inference/cli-linux-arm64": "0.0.10-beta.26"
33
33
  },
34
34
  "scripts": {
35
35
  "build": "bun run clean:bin && bun run build:cli",
@@ -48,7 +48,7 @@
48
48
  "format:fix": "prettier --write .",
49
49
  "lint": "eslint",
50
50
  "lint:fix": "eslint --fix",
51
- "tsc": "tsc",
51
+ "tsc": "tsc --build",
52
52
  "test": "bun run test:unit",
53
53
  "test:unit": "bun test ./tests/unit"
54
54
  }