@todesktop/cli 1.10.1 → 1.10.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 +22 -0
- package/dist/cli.js +501 -392
- package/dist/cli.js.map +3 -3
- package/package.json +5 -2
- package/schemas/schema.json +541 -0
- package/scripts/postinstall.js +19 -0
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,15 @@ 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.3
|
|
1142
|
+
|
|
1143
|
+
- Update Readme to include instructions on `todesktop.json` VSCode/Cursor validation
|
|
1144
|
+
|
|
1145
|
+
### v1.10.2
|
|
1146
|
+
|
|
1147
|
+
- Add support for JSON validation and Intellisense of todesktop.json files
|
|
1148
|
+
- Fix: format error properly when attempting log in with enviornment variables
|
|
1149
|
+
|
|
1128
1150
|
### v1.10.1
|
|
1129
1151
|
|
|
1130
1152
|
- Fix: add JSON schema for missing `todesktop.json` properties
|