run-spaceapp 0.1.15-hostroot.1 → 0.1.15-hostroot.2
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 +6 -7
- package/package.json +7 -4
package/README.md
CHANGED
|
@@ -52,17 +52,16 @@ current user's platform config directory:
|
|
|
52
52
|
|
|
53
53
|
Set `SPACEAPP_HOME` to an absolute path to use a dedicated installation root.
|
|
54
54
|
|
|
55
|
-
The `0.1.15-hostroot.
|
|
56
|
-
|
|
55
|
+
The `0.1.15-hostroot.2` personal candidate tests the complete x64 Linux
|
|
56
|
+
host-root path:
|
|
57
57
|
|
|
58
58
|
```bash
|
|
59
|
-
npx --yes run-spaceapp@personal install
|
|
59
|
+
npx --yes run-spaceapp@personal install --access host-root
|
|
60
60
|
```
|
|
61
61
|
|
|
62
|
-
This
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
pinned to `.0`.
|
|
62
|
+
This candidate publishes matching `core` and `cli` images for `linux/amd64`
|
|
63
|
+
and reuses the existing signed browser manifest without rebuilding it. npm
|
|
64
|
+
rejects the package on arm64. Host-root is supported only on Linux.
|
|
66
65
|
|
|
67
66
|
Use the same `npx --yes run-spaceapp@personal` prefix for follow-up commands
|
|
68
67
|
while this prerelease is installed.
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "run-spaceapp",
|
|
3
|
-
"version": "0.1.15-hostroot.
|
|
4
|
-
"spaceappRuntimeVersion": "0.1.15-hostroot.
|
|
5
|
-
"spaceappHostRootRuntimeCompatible":
|
|
3
|
+
"version": "0.1.15-hostroot.2",
|
|
4
|
+
"spaceappRuntimeVersion": "0.1.15-hostroot.2",
|
|
5
|
+
"spaceappHostRootRuntimeCompatible": true,
|
|
6
6
|
"description": "Cross-platform Docker launcher for the SpaceApp self-hosted agent workspace",
|
|
7
7
|
"license": "Apache-2.0",
|
|
8
8
|
"type": "module",
|
|
@@ -30,6 +30,9 @@
|
|
|
30
30
|
"linux",
|
|
31
31
|
"win32"
|
|
32
32
|
],
|
|
33
|
+
"cpu": [
|
|
34
|
+
"x64"
|
|
35
|
+
],
|
|
33
36
|
"scripts": {
|
|
34
37
|
"test": "node --test tests/*.test.mjs",
|
|
35
38
|
"check": "node --check bin/spaceapp.mjs && node --check src/package-info.mjs && node --check src/index.mjs && node --check src/cli.mjs && node --check src/prerequisites.mjs",
|
|
@@ -48,5 +51,5 @@
|
|
|
48
51
|
"access": "public",
|
|
49
52
|
"provenance": true
|
|
50
53
|
},
|
|
51
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "61c72544f7cb348803e2f1f71e467bf5aa86ded3"
|
|
52
55
|
}
|