@todesktop/cli 1.12.2 → 1.12.3
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/README.md +4 -0
- package/dist/cli.js +14 -6
- package/dist/cli.js.map +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1201,6 +1201,10 @@ Now, when we build your app on ToDesktop servers, it will also run your custom `
|
|
|
1201
1201
|
|
|
1202
1202
|
## Changelog
|
|
1203
1203
|
|
|
1204
|
+
### v1.12.3
|
|
1205
|
+
|
|
1206
|
+
- Allow `catalog:` protocol (used by PNPM) for electron dependency version in `package.json`.
|
|
1207
|
+
|
|
1204
1208
|
### v1.12.2
|
|
1205
1209
|
|
|
1206
1210
|
- Fix: Update `appFiles` to not error when no `*.js` files are found (but `*.ts` files are present)
|
package/dist/cli.js
CHANGED
|
@@ -1155,11 +1155,19 @@ var packageJSON_default = (context) => {
|
|
|
1155
1155
|
required: ["electron"],
|
|
1156
1156
|
properties: {
|
|
1157
1157
|
electron: {
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1158
|
+
oneOf: [
|
|
1159
|
+
{
|
|
1160
|
+
type: "string",
|
|
1161
|
+
semanticVersion: {
|
|
1162
|
+
packageName: "electron",
|
|
1163
|
+
mustBeExact: true
|
|
1164
|
+
}
|
|
1165
|
+
},
|
|
1166
|
+
{
|
|
1167
|
+
type: "string",
|
|
1168
|
+
pattern: "^catalog:"
|
|
1169
|
+
}
|
|
1170
|
+
]
|
|
1163
1171
|
}
|
|
1164
1172
|
}
|
|
1165
1173
|
},
|
|
@@ -5507,7 +5515,7 @@ var package_default = {
|
|
|
5507
5515
|
access: "public"
|
|
5508
5516
|
},
|
|
5509
5517
|
name: "@todesktop/cli",
|
|
5510
|
-
version: "1.12.
|
|
5518
|
+
version: "1.12.2",
|
|
5511
5519
|
license: "MIT",
|
|
5512
5520
|
author: "Dave Jeffery <dave@todesktop.com> (http://www.todesktop.com/)",
|
|
5513
5521
|
homepage: "https://todesktop.com/cli",
|