@cascade-flow/cli 0.2.6 → 0.2.8

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
@@ -8,6 +8,23 @@ Command-line interface for queue-based workflow execution.
8
8
  bun install
9
9
  ```
10
10
 
11
+ ## Bundled Binary
12
+
13
+ The CLI can be compiled into a standalone binary:
14
+
15
+ ```bash
16
+ bun run build:current # Build for current platform
17
+ bun run build # Build for all platforms
18
+ ```
19
+
20
+ **Runtime Requirement:** When using the bundled binary, `bun` must still be installed on the system for workflow step execution. This is because workflow steps are TypeScript files that need to be transpiled and executed at runtime.
21
+
22
+ ```dockerfile
23
+ # Example Dockerfile
24
+ FROM oven/bun:1.2 AS runner
25
+ # bun is available from the base image
26
+ ```
27
+
11
28
  ## Commands
12
29
 
13
30
  ### Worker
Binary file
Binary file
package/dist/cf-linux-x64 CHANGED
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cascade-flow/cli",
3
- "version": "0.2.6",
3
+ "version": "0.2.8",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "cf": "./bin/cf.js"