@todesktop/shared 7.188.8 → 7.188.10
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 +2 -0
- package/lib/desktopify.d.ts +1 -0
- package/package.json +1 -1
- package/src/base.ts +2 -0
- package/src/desktopify.ts +1 -0
package/lib/base.d.ts
CHANGED
|
@@ -61,6 +61,7 @@ export interface IAppMeta {
|
|
|
61
61
|
bucket: string;
|
|
62
62
|
key: string;
|
|
63
63
|
url: string;
|
|
64
|
+
hash?: string;
|
|
64
65
|
};
|
|
65
66
|
windows?: IAppBuildProgress;
|
|
66
67
|
};
|
|
@@ -120,6 +121,7 @@ export interface ToDesktopJson {
|
|
|
120
121
|
filesForDistribution?: string[];
|
|
121
122
|
icon: FilePath;
|
|
122
123
|
id: string;
|
|
124
|
+
includeSubNodeModules?: boolean;
|
|
123
125
|
linux?: {
|
|
124
126
|
category?: string;
|
|
125
127
|
icon?: FilePath;
|
package/lib/desktopify.d.ts
CHANGED
package/package.json
CHANGED
package/src/base.ts
CHANGED
|
@@ -72,6 +72,7 @@ export interface IAppMeta {
|
|
|
72
72
|
bucket: string;
|
|
73
73
|
key: string;
|
|
74
74
|
url: string;
|
|
75
|
+
hash?: string;
|
|
75
76
|
};
|
|
76
77
|
windows?: IAppBuildProgress;
|
|
77
78
|
};
|
|
@@ -132,6 +133,7 @@ export interface ToDesktopJson {
|
|
|
132
133
|
filesForDistribution?: string[];
|
|
133
134
|
icon: FilePath;
|
|
134
135
|
id: string;
|
|
136
|
+
includeSubNodeModules?: boolean;
|
|
135
137
|
linux?: {
|
|
136
138
|
category?: string;
|
|
137
139
|
icon?: FilePath;
|
package/src/desktopify.ts
CHANGED