@todesktop/shared 7.196.1 → 7.197.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/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @todesktop/shared
2
2
 
3
+ ## 7.197.0
4
+
5
+ ### Minor Changes
6
+
7
+ - c0222ed: Added support for custom deb package dependencies via
8
+ `linux.deb.depends` in todesktop.json
9
+
3
10
  ## 7.196.1
4
11
 
5
12
  ### Patch Changes
package/lib/cjs/base.d.ts CHANGED
@@ -159,6 +159,11 @@ export interface ToDesktopJson {
159
159
  includeSubNodeModules?: boolean;
160
160
  linux?: {
161
161
  category?: string;
162
+ deb?: {
163
+ additionalDepends?: string[];
164
+ depends?: string[];
165
+ };
166
+ executableArgs?: string[];
162
167
  icon?: FilePath;
163
168
  imageVersion?: string;
164
169
  noSandbox?: boolean;
package/lib/esm/base.d.ts CHANGED
@@ -159,6 +159,11 @@ export interface ToDesktopJson {
159
159
  includeSubNodeModules?: boolean;
160
160
  linux?: {
161
161
  category?: string;
162
+ deb?: {
163
+ additionalDepends?: string[];
164
+ depends?: string[];
165
+ };
166
+ executableArgs?: string[];
162
167
  icon?: FilePath;
163
168
  imageVersion?: string;
164
169
  noSandbox?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.196.1",
3
+ "version": "7.197.0",
4
4
  "description": "",
5
5
  "sideEffects": false,
6
6
  "main": "./lib/cjs/index.js",
package/src/base.ts CHANGED
@@ -175,6 +175,11 @@ export interface ToDesktopJson {
175
175
  includeSubNodeModules?: boolean;
176
176
  linux?: {
177
177
  category?: string;
178
+ deb?: {
179
+ additionalDepends?: string[];
180
+ depends?: string[];
181
+ };
182
+ executableArgs?: string[];
178
183
  icon?: FilePath;
179
184
  imageVersion?: string;
180
185
  noSandbox?: boolean;