@celsian/vura-cli 0.5.9 → 0.5.10

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.
@@ -1,8 +1,9 @@
1
1
  /**
2
2
  * `vura deploy` — deploy the built project to the Vura platform.
3
3
  *
4
- * Packages `dist/`, uploads it to the Vura API, streams build logs, and prints
5
- * the resulting deployment URL. The actual upload/poll flow lives in
4
+ * Packages `dist/` (plus runtime dependencies for Dedicated/server builds),
5
+ * uploads it to the Vura API, streams build logs, and prints the resulting
6
+ * deployment URL. The actual upload/poll flow lives in
6
7
  * `@celsian/vura-adapter-vura` (`deployToVura`) so the adapter's `buildEnd`
7
8
  * hook and this command share one implementation.
8
9
  *
@@ -1,8 +1,9 @@
1
1
  /**
2
2
  * `vura deploy` — deploy the built project to the Vura platform.
3
3
  *
4
- * Packages `dist/`, uploads it to the Vura API, streams build logs, and prints
5
- * the resulting deployment URL. The actual upload/poll flow lives in
4
+ * Packages `dist/` (plus runtime dependencies for Dedicated/server builds),
5
+ * uploads it to the Vura API, streams build logs, and prints the resulting
6
+ * deployment URL. The actual upload/poll flow lives in
6
7
  * `@celsian/vura-adapter-vura` (`deployToVura`) so the adapter's `buildEnd`
7
8
  * hook and this command share one implementation.
8
9
  *
@@ -92,6 +93,7 @@ export async function deployCommand(args) {
92
93
  try {
93
94
  const result = await deployToVura({
94
95
  distDir,
96
+ projectRoot,
95
97
  apiUrl,
96
98
  token,
97
99
  projectId,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@celsian/vura-cli",
3
- "version": "0.5.9",
3
+ "version": "0.5.10",
4
4
  "description": "Vura CLI — build and deploy full-stack apps",
5
5
  "type": "module",
6
6
  "bin": {
@@ -15,12 +15,12 @@
15
15
  "!dist/**/*.map"
16
16
  ],
17
17
  "dependencies": {
18
- "@celsian/vura-core": "0.5.9",
18
+ "@celsian/vura-core": "0.5.10",
19
19
  "esbuild": "^0.28.1",
20
20
  "what-framework": "^0.11.1"
21
21
  },
22
22
  "peerDependencies": {
23
- "@celsian/vura-adapter-vura": "0.5.9",
23
+ "@celsian/vura-adapter-vura": "0.5.10",
24
24
  "ws": "^8.0.0"
25
25
  },
26
26
  "peerDependenciesMeta": {
@@ -32,7 +32,7 @@
32
32
  }
33
33
  },
34
34
  "devDependencies": {
35
- "@celsian/vura-adapter-vura": "0.5.9",
35
+ "@celsian/vura-adapter-vura": "0.5.10",
36
36
  "@types/ws": "^8.18.1",
37
37
  "ws": "^8.21.0"
38
38
  },