@stacksjs/defaults 0.70.375 → 0.70.376
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.
|
@@ -23,10 +23,16 @@ Stacks owns application configuration and build orchestration.
|
|
|
23
23
|
## Build
|
|
24
24
|
|
|
25
25
|
```bash
|
|
26
|
+
buddy build:mobile
|
|
26
27
|
buddy build:ios
|
|
27
28
|
buddy build:android
|
|
28
29
|
```
|
|
29
30
|
|
|
31
|
+
`buddy build:mobile` builds both native projects in sequence. Use the
|
|
32
|
+
platform-specific commands when iterating on only one native target. The same
|
|
33
|
+
targets are available through `buddy build mobile`, `buddy build ios`, and
|
|
34
|
+
`buddy build android`.
|
|
35
|
+
|
|
30
36
|
The build validates `config/mobile.ts`, initializes a Craft iOS project,
|
|
31
37
|
selects either a remote application URL or bundled web assets, generates the
|
|
32
38
|
Xcode project with xcodegen, and records source, capability, and Craft builder
|
|
@@ -250,6 +250,33 @@ export default new Action({
|
|
|
250
250
|
arguments: [],
|
|
251
251
|
options: [],
|
|
252
252
|
},
|
|
253
|
+
{
|
|
254
|
+
signature: 'buddy build:mobile',
|
|
255
|
+
description: 'Builds both native iOS and Android applications',
|
|
256
|
+
notes: '',
|
|
257
|
+
synopsis: 'buddy build:mobile',
|
|
258
|
+
aliases: ['buddy prod:mobile'],
|
|
259
|
+
arguments: [],
|
|
260
|
+
options: [],
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
signature: 'buddy build:ios',
|
|
264
|
+
description: 'Builds the native iOS application',
|
|
265
|
+
notes: '',
|
|
266
|
+
synopsis: 'buddy build:ios',
|
|
267
|
+
aliases: ['buddy prod:ios'],
|
|
268
|
+
arguments: [],
|
|
269
|
+
options: [],
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
signature: 'buddy build:android',
|
|
273
|
+
description: 'Builds the native Android application',
|
|
274
|
+
notes: '',
|
|
275
|
+
synopsis: 'buddy build:android',
|
|
276
|
+
aliases: ['buddy prod:android'],
|
|
277
|
+
arguments: [],
|
|
278
|
+
options: [],
|
|
279
|
+
},
|
|
253
280
|
{
|
|
254
281
|
signature: 'buddy build:library',
|
|
255
282
|
description: 'Builds any or all libraries',
|
package/ide/vscode/package.json
CHANGED
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@stacksjs/defaults",
|
|
3
3
|
"type": "module",
|
|
4
4
|
"sideEffects": false,
|
|
5
|
-
"version": "0.70.
|
|
5
|
+
"version": "0.70.376",
|
|
6
6
|
"description": "The complete managed Stacks application scaffold, including runtime defaults, AI guidance, editor metadata, and npm-backed project support files.",
|
|
7
7
|
"author": "Chris Breuer",
|
|
8
8
|
"license": "MIT",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@iconify-json/f7": "^1.2.2",
|
|
48
48
|
"@iconify-json/hugeicons": "^1.2.27",
|
|
49
|
-
"@stacksjs/mobile": "^0.70.
|
|
49
|
+
"@stacksjs/mobile": "^0.70.376",
|
|
50
50
|
"@stacksjs/sanitizer": "^0.2.113"
|
|
51
51
|
},
|
|
52
52
|
"scripts": {
|