@todesktop/cli 1.10.2 → 1.10.4
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 +21 -0
- package/dist/cli.js +4 -2
- package/dist/cli.js.map +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -26,6 +26,19 @@ npm install --location=global @todesktop/cli
|
|
|
26
26
|
yarn global add @todesktop/cli
|
|
27
27
|
```
|
|
28
28
|
|
|
29
|
+
Once installed, you can enable JSON validation and IntelliSense for your configuration files. To do so, please add the following to your VSCode/Cursor workspace settings:
|
|
30
|
+
|
|
31
|
+
```json
|
|
32
|
+
{
|
|
33
|
+
"json.schemas": [
|
|
34
|
+
{
|
|
35
|
+
"fileMatch": ["todesktop.json", "todesktop.*.json"],
|
|
36
|
+
"url": "./node_modules/@todesktop/cli/schemas/schema.json"
|
|
37
|
+
}
|
|
38
|
+
]
|
|
39
|
+
}
|
|
40
|
+
```
|
|
41
|
+
|
|
29
42
|
## Get started
|
|
30
43
|
|
|
31
44
|
You can use the ToDesktop CLI to work with an Electron application in 4 steps:
|
|
@@ -1125,6 +1138,14 @@ Now, when we build your app on ToDesktop servers, it will also run your custom `
|
|
|
1125
1138
|
|
|
1126
1139
|
## Changelog
|
|
1127
1140
|
|
|
1141
|
+
### v1.10.4
|
|
1142
|
+
|
|
1143
|
+
- Add support for additional token verification when cancelling smoke test
|
|
1144
|
+
|
|
1145
|
+
### v1.10.3
|
|
1146
|
+
|
|
1147
|
+
- Update Readme to include instructions on `todesktop.json` VSCode/Cursor validation
|
|
1148
|
+
|
|
1128
1149
|
### v1.10.2
|
|
1129
1150
|
|
|
1130
1151
|
- Add support for JSON validation and Intellisense of todesktop.json files
|
package/dist/cli.js
CHANGED
|
@@ -5168,10 +5168,12 @@ async function cancelSmokeTest({
|
|
|
5168
5168
|
buildId,
|
|
5169
5169
|
userId
|
|
5170
5170
|
}) {
|
|
5171
|
+
var _a;
|
|
5171
5172
|
await postToFirebaseFunction_default("cancelSmokeTest_HTTP", {
|
|
5172
5173
|
appId,
|
|
5173
5174
|
buildId,
|
|
5174
|
-
userId
|
|
5175
|
+
userId,
|
|
5176
|
+
idToken: await ((_a = currentUser()) == null ? void 0 : _a.getIdToken())
|
|
5175
5177
|
});
|
|
5176
5178
|
}
|
|
5177
5179
|
|
|
@@ -5420,7 +5422,7 @@ var package_default = {
|
|
|
5420
5422
|
access: "public"
|
|
5421
5423
|
},
|
|
5422
5424
|
name: "@todesktop/cli",
|
|
5423
|
-
version: "1.10.
|
|
5425
|
+
version: "1.10.3",
|
|
5424
5426
|
license: "MIT",
|
|
5425
5427
|
author: "Dave Jeffery <dave@todesktop.com> (http://www.todesktop.com/)",
|
|
5426
5428
|
homepage: "https://todesktop.com/cli",
|