@capawesome/cli 3.8.0-dev.430f471.1765626698 → 3.10.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.
- package/CHANGELOG.md +14 -0
- package/dist/commands/apps/builds/create.js +8 -1
- package/package.json +1 -1
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
|
+
## [3.10.0](https://github.com/capawesome-team/cli/compare/v3.9.0...v3.10.0) (2025-12-20)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* add `apps:liveupdates:generatesigningkey` command ([#104](https://github.com/capawesome-team/cli/issues/104)) ([d0bceef](https://github.com/capawesome-team/cli/commit/d0bceefb0db3977484cde600ea084b52986ccf3d))
|
|
11
|
+
|
|
12
|
+
## [3.9.0](https://github.com/capawesome-team/cli/compare/v3.8.0...v3.9.0) (2025-12-20)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **apps:builds:create:** add `--stack` option ([#106](https://github.com/capawesome-team/cli/issues/106)) ([1b2fa91](https://github.com/capawesome-team/cli/commit/1b2fa9154305b4f73ca3253a84f131ff8fc74263))
|
|
18
|
+
|
|
5
19
|
## [3.8.0](https://github.com/capawesome-team/cli/compare/v3.7.0...v3.8.0) (2025-12-04)
|
|
6
20
|
|
|
7
21
|
|
|
@@ -51,13 +51,19 @@ export default defineCommand({
|
|
|
51
51
|
})
|
|
52
52
|
.optional()
|
|
53
53
|
.describe('The platform for the build. Supported values are `ios` and `android`.'),
|
|
54
|
+
stack: z
|
|
55
|
+
.enum(['macos-sequoia', 'macos-tahoe'], {
|
|
56
|
+
message: 'Build stack must be either `macos-sequoia` or `macos-tahoe`.',
|
|
57
|
+
})
|
|
58
|
+
.optional()
|
|
59
|
+
.describe('The build stack to use for the build process.'),
|
|
54
60
|
type: z
|
|
55
61
|
.string()
|
|
56
62
|
.optional()
|
|
57
63
|
.describe('The type of build. For iOS, supported values are `simulator`, `development`, `ad-hoc`, `app-store`, and `enterprise`. For Android, supported values are `debug` and `release`.'),
|
|
58
64
|
})),
|
|
59
65
|
action: async (options) => {
|
|
60
|
-
let { appId, platform, type, gitRef, environment, certificate, json } = options;
|
|
66
|
+
let { appId, platform, type, gitRef, environment, certificate, json, stack } = options;
|
|
61
67
|
// Check if the user is logged in
|
|
62
68
|
if (!authorizationService.hasAuthorizationToken()) {
|
|
63
69
|
consola.error('You must be logged in to run this command. Please run the `login` command first.');
|
|
@@ -201,6 +207,7 @@ export default defineCommand({
|
|
|
201
207
|
appCertificateName: certificate,
|
|
202
208
|
appEnvironmentName: environment,
|
|
203
209
|
appId,
|
|
210
|
+
stack,
|
|
204
211
|
gitRef,
|
|
205
212
|
platform,
|
|
206
213
|
type,
|