@todesktop/cli 1.13.0-0 → 1.13.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/README.md +7 -4
- package/dist/cli.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -42,7 +42,7 @@ Create a `todesktop.json` file in the root of your Electron project.
|
|
|
42
42
|
|
|
43
43
|
```json
|
|
44
44
|
{
|
|
45
|
-
"$schema": "https://unpkg.com/@todesktop/cli@1.
|
|
45
|
+
"$schema": "https://unpkg.com/@todesktop/cli@1.13.0-0/schemas/schema.json",
|
|
46
46
|
"schemaVersion": 1
|
|
47
47
|
"id": "your-todesktop-id",
|
|
48
48
|
"icon": "./desktop-icon.png",
|
|
@@ -226,9 +226,8 @@ To enable JSON validation and IntelliSense for your `todesktop.json` file in com
|
|
|
226
226
|
- For example, if using a hosted version of the schema:
|
|
227
227
|
```json
|
|
228
228
|
{
|
|
229
|
-
"$schema": "https://unpkg.com/@todesktop/cli@1.
|
|
229
|
+
"$schema": "https://unpkg.com/@todesktop/cli@1.13.0-0/schemas/schema.json",
|
|
230
230
|
"id": "your-todesktop-id"
|
|
231
|
-
// ... other configurations
|
|
232
231
|
}
|
|
233
232
|
```
|
|
234
233
|
- Or if ToDesktop CLI is installed locally, you can use a local path:
|
|
@@ -236,7 +235,6 @@ To enable JSON validation and IntelliSense for your `todesktop.json` file in com
|
|
|
236
235
|
{
|
|
237
236
|
"$schema": "./node_modules/@todesktop/cli/schemas/schema.json",
|
|
238
237
|
"id": "your-todesktop-id"
|
|
239
|
-
// ... other configurations
|
|
240
238
|
}
|
|
241
239
|
```
|
|
242
240
|
|
|
@@ -1288,6 +1286,11 @@ Now, when we build your app on ToDesktop servers, it will also run your custom `
|
|
|
1288
1286
|
|
|
1289
1287
|
## Changelog
|
|
1290
1288
|
|
|
1289
|
+
### v1.13.0
|
|
1290
|
+
|
|
1291
|
+
- Add support for `platformOverrides` in config to specify platform-specific overrides for app configuration
|
|
1292
|
+
- Add support for `$schema` in config to enable JSON schema validation and IDE intellisense
|
|
1293
|
+
|
|
1291
1294
|
### v1.12.5
|
|
1292
1295
|
|
|
1293
1296
|
- Fix: Removed invalid React Hook call in `BuildCommand` that caused errors.
|
package/dist/cli.js
CHANGED
|
@@ -5843,7 +5843,7 @@ var package_default = {
|
|
|
5843
5843
|
access: "public"
|
|
5844
5844
|
},
|
|
5845
5845
|
name: "@todesktop/cli",
|
|
5846
|
-
version: "1.
|
|
5846
|
+
version: "1.13.0-0",
|
|
5847
5847
|
license: "MIT",
|
|
5848
5848
|
author: "Dave Jeffery <dave@todesktop.com> (http://www.todesktop.com/)",
|
|
5849
5849
|
homepage: "https://todesktop.com/cli",
|
package/package.json
CHANGED