@todesktop/shared 7.188.23 → 7.188.24

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/lib/base.d.ts CHANGED
@@ -139,6 +139,9 @@ export interface ToDesktopJson {
139
139
  icon?: FilePath;
140
140
  requirements?: FilePath;
141
141
  };
142
+ mas?: {
143
+ type?: 'development' | 'distribution';
144
+ };
142
145
  nodeVersion?: string;
143
146
  npmVersion?: string;
144
147
  packageManager?: 'npm' | 'yarn' | 'pnpm';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.188.23",
3
+ "version": "7.188.24",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/base.ts CHANGED
@@ -151,6 +151,9 @@ export interface ToDesktopJson {
151
151
  icon?: FilePath;
152
152
  requirements?: FilePath;
153
153
  };
154
+ mas?: {
155
+ type?: 'development' | 'distribution'; // defaults to development
156
+ };
154
157
  nodeVersion?: string;
155
158
  npmVersion?: string;
156
159
  packageManager?: 'npm' | 'yarn' | 'pnpm';