Skip to content

Commit 26cf235

Browse files
committedJun 19, 2023
deps: cacache@17.1.3
1 parent d980405 commit 26cf235

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed
 

‎node_modules/cacache/lib/util/glob.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
'use strict'
22

33
const { glob } = require('glob')
4+
const path = require('path')
45

5-
const globify = (pattern) => pattern.split('//').join('/')
6+
const globify = (pattern) => pattern.split(path.win32.sep).join(path.posix.sep)
67
module.exports = (path, options) => glob(globify(path), options)

‎node_modules/cacache/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cacache",
3-
"version": "17.1.2",
3+
"version": "17.1.3",
44
"cache-version": {
55
"content": "2",
66
"index": "5"

‎package-lock.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
"@npmcli/run-script": "^6.0.2",
9393
"abbrev": "^2.0.0",
9494
"archy": "~1.0.0",
95-
"cacache": "^17.1.2",
95+
"cacache": "^17.1.3",
9696
"chalk": "^5.2.0",
9797
"ci-info": "^3.8.0",
9898
"cli-columns": "^4.0.0",
@@ -3438,9 +3438,9 @@
34383438
}
34393439
},
34403440
"node_modules/cacache": {
3441-
"version": "17.1.2",
3442-
"resolved": "https://registry.npmjs.org/cacache/-/cacache-17.1.2.tgz",
3443-
"integrity": "sha512-VcRDUtZd9r7yfGDpdm3dBDBSQbLd19IqWs9q1tuB9g6kmxYLwIjfLngRKMCfDHxReuf0SBclRuYn66Xds7jzUQ==",
3441+
"version": "17.1.3",
3442+
"resolved": "https://registry.npmjs.org/cacache/-/cacache-17.1.3.tgz",
3443+
"integrity": "sha512-jAdjGxmPxZh0IipMdR7fK/4sDSrHMLUV0+GvVUsjwyGNKHsh79kW/otg+GkbXwl6Uzvy9wsvHOX4nUoWldeZMg==",
34443444
"inBundle": true,
34453445
"dependencies": {
34463446
"@npmcli/fs": "^3.1.0",

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
"@npmcli/run-script": "^6.0.2",
6060
"abbrev": "^2.0.0",
6161
"archy": "~1.0.0",
62-
"cacache": "^17.1.2",
62+
"cacache": "^17.1.3",
6363
"chalk": "^5.2.0",
6464
"ci-info": "^3.8.0",
6565
"cli-columns": "^4.0.0",

0 commit comments

Comments
 (0)
Please sign in to comment.