Skip to content

Commit

Permalink
deps: minimatch@9.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
wraithgar committed Jul 9, 2024
1 parent 1c8d41d commit 094c4ea
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 14 deletions.
9 changes: 5 additions & 4 deletions node_modules/minimatch/dist/commonjs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -531,10 +531,11 @@ class Minimatch {
for (let i = 0; i < globParts.length - 1; i++) {
for (let j = i + 1; j < globParts.length; j++) {
const matched = this.partsMatch(globParts[i], globParts[j], !this.preserveMultipleSlashes);
if (!matched)
continue;
globParts[i] = matched;
globParts[j] = [];
if (matched) {
globParts[i] = [];
globParts[j] = matched;
break;
}
}
}
return globParts.filter(gs => gs.length);
Expand Down
9 changes: 5 additions & 4 deletions node_modules/minimatch/dist/esm/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -519,10 +519,11 @@ export class Minimatch {
for (let i = 0; i < globParts.length - 1; i++) {
for (let j = i + 1; j < globParts.length; j++) {
const matched = this.partsMatch(globParts[i], globParts[j], !this.preserveMultipleSlashes);
if (!matched)
continue;
globParts[i] = matched;
globParts[j] = [];
if (matched) {
globParts[i] = [];
globParts[j] = matched;
break;
}
}
}
return globParts.filter(gs => gs.length);
Expand Down
2 changes: 1 addition & 1 deletion node_modules/minimatch/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me)",
"name": "minimatch",
"description": "a glob matcher in javascript",
"version": "9.0.4",
"version": "9.0.5",
"repository": {
"type": "git",
"url": "git://github.com/isaacs/minimatch.git"
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
"libnpmteam": "^6.0.5",
"libnpmversion": "^6.0.3",
"make-fetch-happen": "^13.0.1",
"minimatch": "^9.0.4",
"minimatch": "^9.0.5",
"minipass": "^7.1.1",
"minipass-pipeline": "^1.2.4",
"ms": "^2.1.2",
Expand Down Expand Up @@ -9015,9 +9015,9 @@
}
},
"node_modules/minimatch": {
"version": "9.0.4",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz",
"integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==",
"version": "9.0.5",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
"integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
"inBundle": true,
"license": "ISC",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
"libnpmteam": "^6.0.5",
"libnpmversion": "^6.0.3",
"make-fetch-happen": "^13.0.1",
"minimatch": "^9.0.4",
"minimatch": "^9.0.5",
"minipass": "^7.1.1",
"minipass-pipeline": "^1.2.4",
"ms": "^2.1.2",
Expand Down

0 comments on commit 094c4ea

Please sign in to comment.