@todesktop/shared 7.186.23 → 7.186.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
@@ -134,6 +134,7 @@ export interface ToDesktopJson {
134
134
  packageManager?: 'npm' | 'yarn' | 'pnpm';
135
135
  pnpmVersion?: string;
136
136
  productName?: string;
137
+ rebuildLibrary?: 'app-builder' | '@electron/rebuild';
137
138
  schemaVersion: number;
138
139
  snap?: IAppBuilderLib['config']['snap'];
139
140
  uploadSizeLimit?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.186.23",
3
+ "version": "7.186.24",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/base.ts CHANGED
@@ -147,6 +147,7 @@ export interface ToDesktopJson {
147
147
  packageManager?: 'npm' | 'yarn' | 'pnpm';
148
148
  pnpmVersion?: string;
149
149
  productName?: string;
150
+ rebuildLibrary?: 'app-builder' | '@electron/rebuild';
150
151
  schemaVersion: number;
151
152
  snap?: IAppBuilderLib['config']['snap'];
152
153
  uploadSizeLimit?: number;