@relayflows/runtime-darwin-arm64 2.0.9 → 2.0.11
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 +9 -16
- package/bin/flows +0 -0
- package/bin/relayflowd +0 -0
- package/package.json +3 -4
package/README.md
CHANGED
|
@@ -1,20 +1,13 @@
|
|
|
1
1
|
# @relayflows/runtime-darwin-arm64
|
|
2
2
|
|
|
3
|
-
Prebuilt
|
|
3
|
+
Prebuilt `relayflowd` kernel daemon for `darwin-arm64`. Install `relayflows` to get
|
|
4
|
+
the `flows` command backed by `@relayflows/sdk`; this package exports only
|
|
5
|
+
`relayflowd`, so it cannot replace the SDK CLI during npm's bin linking.
|
|
4
6
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
+
The daemon is built from the release commit and published with npm provenance.
|
|
8
|
+
The package declares `os`/`cpu` and is an optional dependency of `relayflows`.
|
|
9
|
+
Unsupported platforms need a locally built daemon via `RELAYFLOWD_BIN`.
|
|
7
10
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
This package is platform-specific by design. It declares `os`/`cpu`, so npm
|
|
12
|
-
refuses to install it anywhere else rather than yielding a binary that cannot
|
|
13
|
-
run. `@relayflows/sdk`'s `relayflowd-path.ts` resolves it as an optional
|
|
14
|
-
dependency of the `relayflows` CLI package — installing `relayflows` on an
|
|
15
|
-
Apple Silicon Mac pulls this in automatically; every other platform's npm
|
|
16
|
-
skips it.
|
|
17
|
-
|
|
18
|
-
Intel Macs (`darwin-x64`) are not covered by this package and fall through to
|
|
19
|
-
`relayflowd-path.ts`'s later resolution steps (a source checkout or `PATH`)
|
|
20
|
-
until a `@relayflows/runtime-darwin-x64` package exists.
|
|
11
|
+
The tarball also retains the legacy `bin/flows` executable required by the
|
|
12
|
+
existing release gate. It is not registered as an npm command. Removing it
|
|
13
|
+
from the archive requires a separate change by the release-gate owner.
|
package/bin/flows
CHANGED
|
Binary file
|
package/bin/relayflowd
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@relayflows/runtime-darwin-arm64",
|
|
3
|
-
"version": "2.0.
|
|
4
|
-
"description": "Relayflow
|
|
3
|
+
"version": "2.0.11",
|
|
4
|
+
"description": "Relayflow kernel for darwin-arm64: the prebuilt relayflowd daemon",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -18,8 +18,7 @@
|
|
|
18
18
|
"bin/"
|
|
19
19
|
],
|
|
20
20
|
"bin": {
|
|
21
|
-
"relayflowd": "./bin/relayflowd"
|
|
22
|
-
"flows": "./bin/flows"
|
|
21
|
+
"relayflowd": "./bin/relayflowd"
|
|
23
22
|
},
|
|
24
23
|
"engines": {
|
|
25
24
|
"node": ">=20"
|