libnpmexec 1.1.0 → 1.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/lib/cache-install-dir.js +1 -1
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/CHANGELOG.md +0 -17
package/lib/cache-install-dir.js
CHANGED
|
@@ -12,7 +12,7 @@ const cacheInstallDir = ({ cache, packages }) => {
|
|
|
12
12
|
|
|
13
13
|
const getHash = (packages) =>
|
|
14
14
|
crypto.createHash('sha512')
|
|
15
|
-
.update(packages.sort((a, b) => a.localeCompare(b)).join('\n'))
|
|
15
|
+
.update(packages.sort((a, b) => a.localeCompare(b, 'en')).join('\n'))
|
|
16
16
|
.digest('hex')
|
|
17
17
|
.slice(0, 16)
|
|
18
18
|
|
package/lib/index.js
CHANGED
package/package.json
CHANGED
package/CHANGELOG.md
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
## v1.1.0
|
|
4
|
-
|
|
5
|
-
- Add add walk up dir lookup logic to satisfy local bins,
|
|
6
|
-
similar to `@npmcli/run-script`
|
|
7
|
-
|
|
8
|
-
## v1.0.1
|
|
9
|
-
|
|
10
|
-
- Fix `scriptShell` option name.
|
|
11
|
-
|
|
12
|
-
## v1.0.0
|
|
13
|
-
|
|
14
|
-
- Initial implementation, moves the code that used to live in the **npm cli**,
|
|
15
|
-
ref: https://github.com/npm/cli/blob/release/v7.10.0/lib/exec.js into this
|
|
16
|
-
separate module, providing a programmatic API to the **npm exec** functionality.
|
|
17
|
-
|