@todesktop/cli 1.6.0 → 1.6.2-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 +8 -0
- package/dist/cli.js +247 -222
- package/dist/cli.js.map +4 -4
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -560,6 +560,14 @@ You can also set the version of a `dependency` (or `devDependency`), such as Ele
|
|
|
560
560
|
}
|
|
561
561
|
```
|
|
562
562
|
|
|
563
|
+
### `packageManager` - (optional) string
|
|
564
|
+
|
|
565
|
+
Default: If `yarn.lock` exists, `yarn` is used. If `pnpm-lock.yaml` or `shrinkwrap.yaml` exists, `pnpm` is used. Otherwise, `npm` is used.
|
|
566
|
+
|
|
567
|
+
Example: `yarn`
|
|
568
|
+
|
|
569
|
+
The package manager to use when installing dependencies. Valid values are `npm`, `yarn` or `npm`.
|
|
570
|
+
|
|
563
571
|
### `schemaVersion` - number
|
|
564
572
|
|
|
565
573
|
Example: `1`.
|