Skip to content

Commit

Permalink
deps: cacache@17.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
wraithgar committed Jun 19, 2023
1 parent d980405 commit 26cf235
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion node_modules/cacache/lib/util/glob.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
'use strict'

const { glob } = require('glob')
const path = require('path')

const globify = (pattern) => pattern.split('//').join('/')
const globify = (pattern) => pattern.split(path.win32.sep).join(path.posix.sep)
module.exports = (path, options) => glob(globify(path), options)
2 changes: 1 addition & 1 deletion node_modules/cacache/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cacache",
"version": "17.1.2",
"version": "17.1.3",
"cache-version": {
"content": "2",
"index": "5"
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
"@npmcli/run-script": "^6.0.2",
"abbrev": "^2.0.0",
"archy": "~1.0.0",
"cacache": "^17.1.2",
"cacache": "^17.1.3",
"chalk": "^5.2.0",
"ci-info": "^3.8.0",
"cli-columns": "^4.0.0",
Expand Down Expand Up @@ -3438,9 +3438,9 @@
}
},
"node_modules/cacache": {
"version": "17.1.2",
"resolved": "https://registry.npmjs.org/cacache/-/cacache-17.1.2.tgz",
"integrity": "sha512-VcRDUtZd9r7yfGDpdm3dBDBSQbLd19IqWs9q1tuB9g6kmxYLwIjfLngRKMCfDHxReuf0SBclRuYn66Xds7jzUQ==",
"version": "17.1.3",
"resolved": "https://registry.npmjs.org/cacache/-/cacache-17.1.3.tgz",
"integrity": "sha512-jAdjGxmPxZh0IipMdR7fK/4sDSrHMLUV0+GvVUsjwyGNKHsh79kW/otg+GkbXwl6Uzvy9wsvHOX4nUoWldeZMg==",
"inBundle": true,
"dependencies": {
"@npmcli/fs": "^3.1.0",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"@npmcli/run-script": "^6.0.2",
"abbrev": "^2.0.0",
"archy": "~1.0.0",
"cacache": "^17.1.2",
"cacache": "^17.1.3",
"chalk": "^5.2.0",
"ci-info": "^3.8.0",
"cli-columns": "^4.0.0",
Expand Down

0 comments on commit 26cf235

Please sign in to comment.