libnpmexec 10.1.7 → 10.1.8

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 CHANGED
@@ -40,7 +40,7 @@ await libexec({
40
40
  - `runPath`: Location to where to execute the script **String**, defaults to `.`
41
41
  - `scriptShell`: Default shell to be used **String**, defaults to `sh` on POSIX systems, `process.env.ComSpec` OR `cmd` on Windows
42
42
  - `yes`: Should skip download confirmation prompt when fetching missing packages from the registry? **Boolean**
43
- - `registry`, `cache`, and more options that are forwarded to [@npmcli/arborist](https://github.com/npm/arborist/) and [pacote](https://github.com/npm/pacote/#options) **Object**
43
+ - `registry`, `cache`, and more options that are forwarded to [@npmcli/arborist](https://github.com/npm/cli/blob/latest/workspaces/arborist/README.md) and [pacote](https://github.com/npm/pacote/#options) **Object**
44
44
 
45
45
  ## LICENSE
46
46
 
@@ -1,7 +1,7 @@
1
1
  const getBinFromManifest = (mani) => {
2
2
  // if we have a bin matching (unscoped portion of) packagename, use that
3
3
  // otherwise if there's 1 bin or all bin value is the same (alias), use
4
- // that, otherwise fail
4
+ // that; otherwise, fail
5
5
  const bin = mani.bin || {}
6
6
  if (new Set(Object.values(bin)).size === 1) {
7
7
  return Object.keys(bin)[0]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "libnpmexec",
3
- "version": "10.1.7",
3
+ "version": "10.1.8",
4
4
  "files": [
5
5
  "bin/",
6
6
  "lib/"
@@ -60,7 +60,7 @@
60
60
  "tap": "^16.3.8"
61
61
  },
62
62
  "dependencies": {
63
- "@npmcli/arborist": "^9.1.5",
63
+ "@npmcli/arborist": "^9.1.6",
64
64
  "@npmcli/package-json": "^7.0.0",
65
65
  "@npmcli/run-script": "^10.0.0",
66
66
  "ci-info": "^4.0.0",