@todesktop/cli 1.19.0-3 → 1.19.1-1
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 +12 -5
- package/dist/cli.js +100 -4386
- package/dist/cli.js.map +4 -4
- package/dist/types.d.ts +47 -2
- package/package.json +3 -5
- package/schemas/schema.json +54 -4
package/README.md
CHANGED
|
@@ -48,7 +48,7 @@ Create a `todesktop.json` file in the root of your Electron project.
|
|
|
48
48
|
|
|
49
49
|
```json
|
|
50
50
|
{
|
|
51
|
-
"$schema": "https://unpkg.com/@todesktop/cli@1.19.
|
|
51
|
+
"$schema": "https://unpkg.com/@todesktop/cli@1.19.1-1/schemas/schema.json",
|
|
52
52
|
"schemaVersion": 1
|
|
53
53
|
"id": "your-todesktop-id",
|
|
54
54
|
"icon": "./desktop-icon.png",
|
|
@@ -413,7 +413,7 @@ To enable JSON validation and IntelliSense for your `todesktop.json` file in com
|
|
|
413
413
|
- For example, if using a hosted version of the schema:
|
|
414
414
|
```json
|
|
415
415
|
{
|
|
416
|
-
"$schema": "https://unpkg.com/@todesktop/cli@1.19.
|
|
416
|
+
"$schema": "https://unpkg.com/@todesktop/cli@1.19.1-1/schemas/schema.json",
|
|
417
417
|
"id": "your-todesktop-id"
|
|
418
418
|
}
|
|
419
419
|
```
|
|
@@ -840,7 +840,7 @@ when creating your `BrowserWindow`s.
|
|
|
840
840
|
|
|
841
841
|
#### `linux.imageVersion` - (optional) string
|
|
842
842
|
|
|
843
|
-
Default: `0.0.
|
|
843
|
+
Default: `0.0.12`
|
|
844
844
|
|
|
845
845
|
Example: `0.1.0`
|
|
846
846
|
|
|
@@ -1039,11 +1039,11 @@ effective `package.json` that ToDesktop will use.
|
|
|
1039
1039
|
|
|
1040
1040
|
### `packageManager` - (optional) string
|
|
1041
1041
|
|
|
1042
|
-
Default: If `yarn.lock` exists, `yarn` is used. If `pnpm-lock.yaml` or `shrinkwrap.yaml` exists, `pnpm` is used. Otherwise, `npm` is used.
|
|
1042
|
+
Default: If `bun.lockb` or `bun.lock` exists, `bun` is used. If `yarn.lock` exists, `yarn` is used. If `pnpm-lock.yaml` or `shrinkwrap.yaml` exists, `pnpm` is used. Otherwise, `npm` is used.
|
|
1043
1043
|
|
|
1044
1044
|
Example: `yarn`
|
|
1045
1045
|
|
|
1046
|
-
The package manager to use when installing dependencies. Valid values are `npm`, `yarn` or `
|
|
1046
|
+
The package manager to use when installing dependencies. Valid values are `npm`, `yarn`, `pnpm` or `bun`.
|
|
1047
1047
|
|
|
1048
1048
|
### `pnpmVersion` - string
|
|
1049
1049
|
|
|
@@ -1625,6 +1625,13 @@ Now, when we build your app on ToDesktop servers, it will also run your custom
|
|
|
1625
1625
|
|
|
1626
1626
|
## Changelog
|
|
1627
1627
|
|
|
1628
|
+
### 1.20.0
|
|
1629
|
+
|
|
1630
|
+
#### Minor Changes
|
|
1631
|
+
|
|
1632
|
+
- 3ae0eaf: Add support for Electron Fuses configuration
|
|
1633
|
+
- 6e11f24: Add Bun package manager support
|
|
1634
|
+
|
|
1628
1635
|
### 1.19.0
|
|
1629
1636
|
|
|
1630
1637
|
#### Minor Changes
|