@kvell007/embed-labs-local-bridge 0.1.0-alpha.50 → 0.1.0-alpha.51
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 +1 -1
- package/dist/index.js +5 -0
- package/package.json +6 -5
package/README.md
CHANGED
|
@@ -17,7 +17,7 @@ are complete.
|
|
|
17
17
|
`@embed-labs/local-bridge-darwin-arm64`,
|
|
18
18
|
`@embed-labs/local-bridge-linux-x64`,
|
|
19
19
|
`@embed-labs/local-bridge-linux-arm64`, and
|
|
20
|
-
`@embed-labs/local-bridge-win32-x64`.
|
|
20
|
+
`@embed-labs/local-bridge-win32-x64` / `win32-arm64`.
|
|
21
21
|
- Local health endpoint.
|
|
22
22
|
- Event-maintained device inventory for serial ports, RP2350-compatible UF2
|
|
23
23
|
volumes, Rockchip USB Loader/Maskrom style devices, RP2350 Monitor endpoints,
|
package/dist/index.js
CHANGED
|
@@ -26,6 +26,11 @@ const TARGETS = {
|
|
|
26
26
|
packageName: "@embed-labs/local-bridge-win32-x64",
|
|
27
27
|
artifactDir: "win32-x64",
|
|
28
28
|
binaryName: "embed-local-bridge.exe"
|
|
29
|
+
},
|
|
30
|
+
"win32-arm64": {
|
|
31
|
+
packageName: "@embed-labs/local-bridge-win32-arm64",
|
|
32
|
+
artifactDir: "win32-arm64",
|
|
33
|
+
binaryName: "embed-local-bridge.exe"
|
|
29
34
|
}
|
|
30
35
|
};
|
|
31
36
|
export function resolveBridgeBinary() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kvell007/embed-labs-local-bridge",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.51",
|
|
4
4
|
"description": "Local hardware bridge service for Embed Labs Cloud. Experimental npm publish.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -18,10 +18,11 @@
|
|
|
18
18
|
"embed-local-bridge": "dist/index.js"
|
|
19
19
|
},
|
|
20
20
|
"optionalDependencies": {
|
|
21
|
-
"@embed-labs/local-bridge-darwin-arm64": "npm:@kvell007/embed-labs-local-bridge-darwin-arm64@0.1.0-alpha.
|
|
22
|
-
"@embed-labs/local-bridge-linux-arm64": "npm:@kvell007/embed-labs-local-bridge-linux-arm64@0.1.0-alpha.
|
|
23
|
-
"@embed-labs/local-bridge-linux-x64": "npm:@kvell007/embed-labs-local-bridge-linux-x64@0.1.0-alpha.
|
|
24
|
-
"@embed-labs/local-bridge-win32-
|
|
21
|
+
"@embed-labs/local-bridge-darwin-arm64": "npm:@kvell007/embed-labs-local-bridge-darwin-arm64@0.1.0-alpha.51",
|
|
22
|
+
"@embed-labs/local-bridge-linux-arm64": "npm:@kvell007/embed-labs-local-bridge-linux-arm64@0.1.0-alpha.51",
|
|
23
|
+
"@embed-labs/local-bridge-linux-x64": "npm:@kvell007/embed-labs-local-bridge-linux-x64@0.1.0-alpha.51",
|
|
24
|
+
"@embed-labs/local-bridge-win32-arm64": "npm:@kvell007/embed-labs-local-bridge-win32-arm64@0.1.0-alpha.51",
|
|
25
|
+
"@embed-labs/local-bridge-win32-x64": "npm:@kvell007/embed-labs-local-bridge-win32-x64@0.1.0-alpha.51"
|
|
25
26
|
},
|
|
26
27
|
"publishConfig": {
|
|
27
28
|
"access": "public",
|