@capawesome/cli 4.0.2 → 4.0.4

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/CHANGELOG.md CHANGED
@@ -2,6 +2,20 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
4
4
 
5
+ ## [4.0.4](https://github.com/capawesome-team/cli/compare/v4.0.3...v4.0.4) (2026-02-05)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **apps:deployments:create:** prevent waiting for deployment on web platform ([acb7a1f](https://github.com/capawesome-team/cli/commit/acb7a1f83774a922c05ae655a75d0854da67af81))
11
+
12
+ ## [4.0.3](https://github.com/capawesome-team/cli/compare/v4.0.2...v4.0.3) (2026-02-05)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * **deps:** npm audit fix ([f962f1d](https://github.com/capawesome-team/cli/commit/f962f1d1853932b987a61f26c89b3f18d7ae121a))
18
+
5
19
  ## [4.0.2](https://github.com/capawesome-team/cli/compare/v4.0.1...v4.0.2) (2026-02-03)
6
20
 
7
21
  ## [4.0.1](https://github.com/capawesome-team/cli/compare/v4.0.0...v4.0.1) (2026-01-27)
@@ -192,7 +192,7 @@ export default defineCommand({
192
192
  consola.info(`Deployment URL: ${DEFAULT_CONSOLE_BASE_URL}/apps/${appId}/deployments/${response.id}`);
193
193
  consola.success('Deployment created successfully.');
194
194
  // Wait for deployment job to complete by default, unless --detached flag is set
195
- const shouldWait = !options.detached;
195
+ const shouldWait = !options.detached && build.platform !== 'web';
196
196
  if (shouldWait) {
197
197
  let lastPrintedLogNumber = 0;
198
198
  let isWaitingForStart = true;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capawesome/cli",
3
- "version": "4.0.2",
3
+ "version": "4.0.4",
4
4
  "description": "The Capawesome Cloud Command Line Interface (CLI) to manage Live Updates and more.",
5
5
  "type": "module",
6
6
  "scripts": {