@command-center/command-center 0.9.1 → 0.10.0-rc0

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
@@ -9,7 +9,8 @@ Binary distribution of UpToSpeed Command Center, a desktop-friendly interface fo
9
9
  - Linux arm64
10
10
  - Linux x64
11
11
  - Windows x64
12
- - Windows arm64
12
+
13
+ Windows on ARM is currently unsupported; the x64 build runs under whole-process emulation on ARM64 Windows.
13
14
 
14
15
  If your platform is missing, please open an issue so we can add another target.
15
16
 
@@ -26,7 +27,6 @@ This command places a `command-center` executable on your `$PATH`. During instal
26
27
  - `@command-center/command-center-linux-arm64`
27
28
  - `@command-center/command-center-linux-x64`
28
29
  - `@command-center/command-center-win-x64`
29
- - `@command-center/command-center-win-arm64`
30
30
 
31
31
  Each optional package ships exactly one prebuilt binary. The wrapper resolves the right package at runtime and forwards all CLI arguments to its binary.
32
32
 
@@ -43,11 +43,4 @@ export const PLATFORM_PACKAGES = new Map([
43
43
  fallbackBinaryName: "command-center-win-x64-baseline.exe",
44
44
  },
45
45
  ],
46
- [
47
- "win32:arm64",
48
- {
49
- packageName: "@command-center/command-center-win-arm64",
50
- binaryName: "command-center-win-arm64.exe",
51
- },
52
- ],
53
46
  ]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@command-center/command-center",
3
- "version": "0.9.1",
3
+ "version": "0.10.0-rc0",
4
4
  "type": "module",
5
5
  "description": "Binary distribution of UpToSpeed Command Center",
6
6
  "bin": {
@@ -23,12 +23,11 @@
23
23
  "access": "public"
24
24
  },
25
25
  "optionalDependencies": {
26
- "@command-center/command-center-linux-arm64": "0.9.1",
27
- "@command-center/command-center-linux-x64": "0.9.1",
28
- "@command-center/command-center-macos-arm64": "0.9.1",
29
- "@command-center/command-center-macos-x64": "0.9.1",
30
- "@command-center/command-center-win-arm64": "0.9.1",
31
- "@command-center/command-center-win-x64": "0.9.1"
26
+ "@command-center/command-center-linux-arm64": "0.10.0-rc0",
27
+ "@command-center/command-center-linux-x64": "0.10.0-rc0",
28
+ "@command-center/command-center-macos-arm64": "0.10.0-rc0",
29
+ "@command-center/command-center-macos-x64": "0.10.0-rc0",
30
+ "@command-center/command-center-win-x64": "0.10.0-rc0"
32
31
  },
33
32
  "scripts": {}
34
33
  }