@nexus-flow/mcp 0.63.0 → 0.64.0
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/lib/platform.js +9 -4
- package/package.json +1 -1
package/lib/platform.js
CHANGED
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
// Host → canonical platform key. Mirrors install.sh's `platform_for
|
|
4
|
-
//
|
|
5
|
-
//
|
|
6
|
-
//
|
|
3
|
+
// Host → canonical platform key. Mirrors install.sh's `platform_for`: the shim is a componentwise
|
|
4
|
+
// consumer of release/platforms, the single source of truth for the four shipped targets.
|
|
5
|
+
// `cargo xtask platforms check` asserts the mapping below covers every canonical os/arch token,
|
|
6
|
+
// so a 5th target or a rename fails CI here.
|
|
7
|
+
//
|
|
8
|
+
// A THIRD SIBLING USED TO BE NAMED HERE — the updater Lambda's normalizeOs/normalizeArch. It was
|
|
9
|
+
// checked by the same gate until the Lambda left this repo (6j6v.sgfr); it is now in
|
|
10
|
+
// nxsflow-landing-page and is NOT checked by anything. See release/platforms' own header: a fifth
|
|
11
|
+
// target has to be carried over there by hand, and this file is not where that is tracked.
|
|
7
12
|
|
|
8
13
|
// uname os token → canonical os.
|
|
9
14
|
function osFor(unameS) {
|
package/package.json
CHANGED