@capawesome/cli 4.0.0 → 4.0.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/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
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.2](https://github.com/capawesome-team/cli/compare/v4.0.1...v4.0.2) (2026-02-03)
|
|
6
|
+
|
|
7
|
+
## [4.0.1](https://github.com/capawesome-team/cli/compare/v4.0.0...v4.0.1) (2026-01-27)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* change exit code to indicate errors for deprecated commands ([78cd785](https://github.com/capawesome-team/cli/commit/78cd785714309f3acbba2ca19a17b8bd85194cc6))
|
|
13
|
+
|
|
5
14
|
## [4.0.0](https://github.com/capawesome-team/cli/compare/v3.11.0...v4.0.0) (2026-01-24)
|
|
6
15
|
|
|
7
16
|
|
|
@@ -85,6 +85,6 @@ export default defineCommand({
|
|
|
85
85
|
consola.info('Please use one of the following commands instead:');
|
|
86
86
|
consola.info(' - `apps:liveupdates:upload` to upload a bundle to Capawesome Cloud');
|
|
87
87
|
consola.info(' - `apps:liveupdates:register` to register a self-hosted bundle URL');
|
|
88
|
-
process.exit(
|
|
88
|
+
process.exit(1);
|
|
89
89
|
},
|
|
90
90
|
});
|
|
@@ -10,6 +10,6 @@ export default defineCommand({
|
|
|
10
10
|
action: async (options, args) => {
|
|
11
11
|
consola.warn('The `apps:bundles:delete` command has been deprecated and will be removed in future versions.');
|
|
12
12
|
consola.info('Please refer to the official documentation for alternative approaches.');
|
|
13
|
-
process.exit(
|
|
13
|
+
process.exit(1);
|
|
14
14
|
},
|
|
15
15
|
});
|
|
@@ -42,6 +42,6 @@ export default defineCommand({
|
|
|
42
42
|
action: async (options, args) => {
|
|
43
43
|
consola.warn('The `apps:bundles:update` command has been deprecated and will be removed in future versions.');
|
|
44
44
|
consola.info('Please refer to the official documentation for alternative approaches.');
|
|
45
|
-
process.exit(
|
|
45
|
+
process.exit(1);
|
|
46
46
|
},
|
|
47
47
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capawesome/cli",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.2",
|
|
4
4
|
"description": "The Capawesome Cloud Command Line Interface (CLI) to manage Live Updates and more.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"archiver": "7.0.1",
|
|
59
59
|
"axios": "1.13.2",
|
|
60
60
|
"axios-retry": "4.5.0",
|
|
61
|
-
"c12": "
|
|
61
|
+
"c12": "3.3.3",
|
|
62
62
|
"consola": "3.3.0",
|
|
63
63
|
"form-data": "4.0.4",
|
|
64
64
|
"http-proxy-agent": "7.0.2",
|