@todesktop/cli 1.6.1 → 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 +5 -1
- package/dist/cli.js.map +2 -2
- package/package.json +1 -1
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`.
|
package/dist/cli.js
CHANGED
|
@@ -1612,6 +1612,10 @@ var full_default = (context) => {
|
|
|
1612
1612
|
}
|
|
1613
1613
|
}
|
|
1614
1614
|
},
|
|
1615
|
+
packageManager: {
|
|
1616
|
+
type: "string",
|
|
1617
|
+
enum: ["npm", "yarn", "pnpm"]
|
|
1618
|
+
},
|
|
1615
1619
|
schemaVersion: { type: "number", minimum: 1, maximum: 1 },
|
|
1616
1620
|
snap: {
|
|
1617
1621
|
type: "object",
|
|
@@ -4152,7 +4156,7 @@ var package_default = {
|
|
|
4152
4156
|
access: "public"
|
|
4153
4157
|
},
|
|
4154
4158
|
name: "@todesktop/cli",
|
|
4155
|
-
version: "1.6.
|
|
4159
|
+
version: "1.6.1",
|
|
4156
4160
|
license: "MIT",
|
|
4157
4161
|
author: "Dave Jeffery <dave@todesktop.com> (http://www.todesktop.com/)",
|
|
4158
4162
|
homepage: "https://todesktop.com/cli",
|