@inference/cli 0.0.10-beta.21 → 0.0.10-beta.47
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 +3 -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
|
|
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`
|
|
@@ -248,8 +248,9 @@ bun scripts/sync-versions.ts 0.0.9
|
|
|
248
248
|
|
|
249
249
|
### Manual Runs
|
|
250
250
|
|
|
251
|
-
- `workflow_dispatch`
|
|
251
|
+
- `workflow_dispatch` with `dry_run=false` always attempts a publish on `development` or `main`
|
|
252
252
|
- Set `dry_run=true` to validate the full build and packaging path without publishing to npm
|
|
253
|
+
- Pushes to `development` always publish a fresh beta release when this workflow is triggered
|
|
253
254
|
- Set `dry_run=false` only on `development` or `main`
|
|
254
255
|
- Manual runs from other branches are rejected by the workflow
|
|
255
256
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inference/cli",
|
|
3
|
-
"version": "0.0.10-beta.
|
|
3
|
+
"version": "0.0.10-beta.47",
|
|
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.10-beta.
|
|
30
|
-
"@inference/cli-darwin-x64": "0.0.10-beta.
|
|
31
|
-
"@inference/cli-linux-x64": "0.0.10-beta.
|
|
32
|
-
"@inference/cli-linux-arm64": "0.0.10-beta.
|
|
29
|
+
"@inference/cli-darwin-arm64": "0.0.10-beta.47",
|
|
30
|
+
"@inference/cli-darwin-x64": "0.0.10-beta.47",
|
|
31
|
+
"@inference/cli-linux-x64": "0.0.10-beta.47",
|
|
32
|
+
"@inference/cli-linux-arm64": "0.0.10-beta.47"
|
|
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
|
}
|