@todesktop/cli 1.18.1 → 1.18.3
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/README.md +34 -8
- package/dist/cli.js +92 -14
- package/dist/cli.js.map +2 -2
- package/dist/types.d.ts +4 -0
- package/package.json +1 -1
- package/schemas/schema.json +6 -0
package/dist/types.d.ts
CHANGED
|
@@ -339,6 +339,10 @@ export interface MasConfigProperty {
|
|
|
339
339
|
* Whether to sign app for development or for distribution.
|
|
340
340
|
*/
|
|
341
341
|
type?: 'development' | 'distribution';
|
|
342
|
+
/**
|
|
343
|
+
* The minimum macOS version required to run the app. Set to '12.0' or higher for arm64-only Mac App Store submissions.
|
|
344
|
+
*/
|
|
345
|
+
minimumSystemVersion?: string;
|
|
342
346
|
/**
|
|
343
347
|
* Minimatch pattern of paths that are allowed to be x64 binaries in both ASAR files.
|
|
344
348
|
*/
|
package/package.json
CHANGED
package/schemas/schema.json
CHANGED
|
@@ -533,6 +533,12 @@
|
|
|
533
533
|
"examples": ["distribution"],
|
|
534
534
|
"default": "development"
|
|
535
535
|
},
|
|
536
|
+
"minimumSystemVersion": {
|
|
537
|
+
"type": "string",
|
|
538
|
+
"description": "The minimum macOS version required to run the app. Set to '12.0' or higher for arm64-only Mac App Store submissions.",
|
|
539
|
+
"examples": ["12.0", "11.0", "10.15"],
|
|
540
|
+
"pattern": "^[0-9]+\\.[0-9]+(\\.[0-9]+)?$"
|
|
541
|
+
},
|
|
536
542
|
"x64ArchFiles": {
|
|
537
543
|
"type": "string",
|
|
538
544
|
"description": "Minimatch pattern of paths that are allowed to be x64 binaries in both ASAR files.",
|