@todesktop/shared 7.179.0 → 7.181.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/lib/base.d.ts +1 -0
- package/lib/desktopify2.d.ts +11 -0
- package/package.json +1 -1
- package/src/base.ts +2 -1
- package/src/desktopify2.ts +11 -0
package/lib/base.d.ts
CHANGED
package/lib/desktopify2.d.ts
CHANGED
|
@@ -282,6 +282,17 @@ export interface DesktopifyApp2 {
|
|
|
282
282
|
runtimeEnvs?: {
|
|
283
283
|
[key: string]: string;
|
|
284
284
|
};
|
|
285
|
+
/**
|
|
286
|
+
* Command line switches
|
|
287
|
+
* Learn more {@link https://www.electronjs.org/docs/api/command-line-switches}
|
|
288
|
+
* @example
|
|
289
|
+
* {
|
|
290
|
+
* 'remote-debugging-port': '8315'
|
|
291
|
+
* }
|
|
292
|
+
*/
|
|
293
|
+
commandLineSwitches?: {
|
|
294
|
+
[key: string]: string;
|
|
295
|
+
};
|
|
285
296
|
/**
|
|
286
297
|
* Launch App at startup
|
|
287
298
|
*/
|
package/package.json
CHANGED
package/src/base.ts
CHANGED
|
@@ -56,6 +56,7 @@ export interface IAppMeta {
|
|
|
56
56
|
linux?: IAppBuildProgress;
|
|
57
57
|
mac?: IAppBuildProgress;
|
|
58
58
|
projectConfig?: {
|
|
59
|
+
appBuilderLibVersion?: string;
|
|
59
60
|
appId?: string;
|
|
60
61
|
appFiles?: string[];
|
|
61
62
|
appPath?: FilePath;
|
|
@@ -105,7 +106,7 @@ export interface IAppMeta {
|
|
|
105
106
|
debugLogging?: boolean;
|
|
106
107
|
url: string;
|
|
107
108
|
version?: string;
|
|
108
|
-
}
|
|
109
|
+
};
|
|
109
110
|
nsisInclude?: FilePath;
|
|
110
111
|
};
|
|
111
112
|
};
|
package/src/desktopify2.ts
CHANGED
|
@@ -407,6 +407,17 @@ export interface DesktopifyApp2 {
|
|
|
407
407
|
runtimeEnvs?: {
|
|
408
408
|
[key: string]: string;
|
|
409
409
|
};
|
|
410
|
+
/**
|
|
411
|
+
* Command line switches
|
|
412
|
+
* Learn more {@link https://www.electronjs.org/docs/api/command-line-switches}
|
|
413
|
+
* @example
|
|
414
|
+
* {
|
|
415
|
+
* 'remote-debugging-port': '8315'
|
|
416
|
+
* }
|
|
417
|
+
*/
|
|
418
|
+
commandLineSwitches?: {
|
|
419
|
+
[key: string]: string;
|
|
420
|
+
};
|
|
410
421
|
/**
|
|
411
422
|
* Launch App at startup
|
|
412
423
|
*/
|