@todesktop/shared 7.186.15 → 7.186.16

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
@@ -93,6 +93,7 @@ export interface IAppMeta {
93
93
  nodeVersion?: string;
94
94
  npmVersion?: string;
95
95
  packageManager?: 'npm' | 'yarn' | 'pnpm';
96
+ pnpmVersion?: string;
96
97
  productName?: string;
97
98
  schemaVersion: number;
98
99
  snap?: IAppBuilderLib['config']['snap'];
@@ -106,6 +107,7 @@ export interface IAppMeta {
106
107
  };
107
108
  nsisInclude?: FilePath;
108
109
  };
110
+ yarnVersion?: string;
109
111
  };
110
112
  shouldCodeSign?: boolean;
111
113
  shouldRelease?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.186.15",
3
+ "version": "7.186.16",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/base.ts CHANGED
@@ -105,6 +105,7 @@ export interface IAppMeta {
105
105
  nodeVersion?: string;
106
106
  npmVersion?: string;
107
107
  packageManager?: 'npm' | 'yarn' | 'pnpm';
108
+ pnpmVersion?: string;
108
109
  productName?: string;
109
110
  schemaVersion: number;
110
111
  snap?: IAppBuilderLib['config']['snap'];
@@ -118,6 +119,7 @@ export interface IAppMeta {
118
119
  };
119
120
  nsisInclude?: FilePath;
120
121
  };
122
+ yarnVersion?: string;
121
123
  };
122
124
  shouldCodeSign?: boolean;
123
125
  shouldRelease?: boolean;