@vantaloom/runtime-win32-x64 0.1.24 → 0.2.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.
Files changed (35) hide show
  1. package/VERSION +1 -1
  2. package/bin/vantaloom-agent.exe +0 -0
  3. package/bin/vantaloom-api.exe +0 -0
  4. package/bin/vantaloom-tray.exe +0 -0
  5. package/bin/vantaloomctl.exe +0 -0
  6. package/cli/README.md +12 -12
  7. package/cli/bin/vantaloom.mjs +9 -9
  8. package/cli/config.json +2 -1
  9. package/cli/package.json +22 -22
  10. package/cli/src/cli.mjs +917 -878
  11. package/manifest.json +4 -3
  12. package/package.json +1 -1
  13. package/web/404.html +1 -1
  14. package/web/__next.__PAGE__.txt +2 -2
  15. package/web/__next._full.txt +3 -3
  16. package/web/__next._head.txt +1 -1
  17. package/web/__next._index.txt +2 -2
  18. package/web/__next._tree.txt +2 -2
  19. package/web/_next/static/chunks/1da7f8d27cd96c86.js +52 -0
  20. package/web/_next/static/chunks/c0c4db6d45c7ff65.css +2 -0
  21. package/web/_not-found/__next._full.txt +2 -2
  22. package/web/_not-found/__next._head.txt +1 -1
  23. package/web/_not-found/__next._index.txt +2 -2
  24. package/web/_not-found/__next._not-found/__PAGE__.txt +1 -1
  25. package/web/_not-found/__next._not-found.txt +1 -1
  26. package/web/_not-found/__next._tree.txt +2 -2
  27. package/web/_not-found.html +1 -1
  28. package/web/_not-found.txt +2 -2
  29. package/web/index.html +2 -2
  30. package/web/index.txt +3 -3
  31. package/web/_next/static/chunks/2743615d9a466b92.css +0 -2
  32. package/web/_next/static/chunks/bb819ea11a2befeb.js +0 -49
  33. /package/web/_next/static/{xJ0OUDbsX5zVbwpnlZg9k → qDb937Fsr8zR_VHDxrNf_}/_buildManifest.js +0 -0
  34. /package/web/_next/static/{xJ0OUDbsX5zVbwpnlZg9k → qDb937Fsr8zR_VHDxrNf_}/_clientMiddlewareManifest.json +0 -0
  35. /package/web/_next/static/{xJ0OUDbsX5zVbwpnlZg9k → qDb937Fsr8zR_VHDxrNf_}/_ssgManifest.js +0 -0
package/VERSION CHANGED
@@ -1 +1 @@
1
- 5ce4bec
1
+ 9bcdf40
Binary file
Binary file
Binary file
Binary file
package/cli/README.md CHANGED
@@ -1,12 +1,12 @@
1
- # Vantaloom CLI
2
-
3
- Command-line manager for installing, updating, starting, stopping, and inspecting a local Vantaloom runtime.
4
-
5
- ```sh
6
- npm install -g @vantaloom/cli
7
- vantaloom install
8
- vantaloom status
9
- vantaloom update
10
- ```
11
-
12
- The CLI downloads the current platform runtime from public npm packages such as `@vantaloom/runtime-win32-x64`, `@vantaloom/runtime-linux-x64`, and `@vantaloom/runtime-darwin-arm64`. No GitHub token is required for install or update.
1
+ # Vantaloom CLI
2
+
3
+ Command-line manager for installing, updating, starting, stopping, and inspecting a local Vantaloom runtime.
4
+
5
+ ```sh
6
+ npm install -g @vantaloom/cli
7
+ vantaloom install
8
+ vantaloom status
9
+ vantaloom update
10
+ ```
11
+
12
+ The CLI downloads the current platform runtime from public npm packages such as `@vantaloom/runtime-win32-x64`, `@vantaloom/runtime-linux-x64`, and `@vantaloom/runtime-darwin-arm64`. No GitHub token is required for install or update.
@@ -1,9 +1,9 @@
1
- #!/usr/bin/env node
2
-
3
- import { main } from "../src/cli.mjs"
4
-
5
- main(process.argv.slice(2)).catch((error) => {
6
- const message = error instanceof Error ? error.message : String(error)
7
- console.error(`vantaloom: ${message}`)
8
- process.exit(1)
9
- })
1
+ #!/usr/bin/env node
2
+
3
+ import { main } from "../src/cli.mjs"
4
+
5
+ main(process.argv.slice(2)).catch((error) => {
6
+ const message = error instanceof Error ? error.message : String(error)
7
+ console.error(`vantaloom: ${message}`)
8
+ process.exit(1)
9
+ })
package/cli/config.json CHANGED
@@ -1,5 +1,6 @@
1
1
  {
2
- "remote": "https://github.com/Timefiles404/Vantaloom-next",
2
+ "sourceRoot": "D:\\Projects\\Vantaloom-ui",
3
+ "remote": "git@github-vantaloom:Timefiles404/Vantaloom-next.git",
3
4
  "repo": "Timefiles404/Vantaloom-next",
4
5
  "releaseTag": "runtime-latest",
5
6
  "runtimePackage": "@vantaloom/runtime-win32-x64",
package/cli/package.json CHANGED
@@ -1,22 +1,22 @@
1
- {
2
- "name": "@vantaloom/cli",
3
- "version": "0.1.24",
4
- "private": false,
5
- "type": "module",
6
- "description": "Vantaloom local runtime manager.",
7
- "bin": {
8
- "vantaloom": "bin/vantaloom.mjs"
9
- },
10
- "files": [
11
- "bin",
12
- "src",
13
- "package.json",
14
- "README.md"
15
- ],
16
- "publishConfig": {
17
- "access": "public"
18
- },
19
- "engines": {
20
- "node": ">=20"
21
- }
22
- }
1
+ {
2
+ "name": "@vantaloom/cli",
3
+ "version": "0.2.0",
4
+ "private": false,
5
+ "type": "module",
6
+ "description": "Vantaloom local runtime manager.",
7
+ "bin": {
8
+ "vantaloom": "bin/vantaloom.mjs"
9
+ },
10
+ "files": [
11
+ "bin",
12
+ "src",
13
+ "package.json",
14
+ "README.md"
15
+ ],
16
+ "publishConfig": {
17
+ "access": "public"
18
+ },
19
+ "engines": {
20
+ "node": ">=20"
21
+ }
22
+ }