Skip to content

Commit

Permalink
deps: glob@10.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
wraithgar committed May 17, 2023
1 parent 902cb80 commit 94d6ee7
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 13 deletions.
4 changes: 2 additions & 2 deletions node_modules/glob/dist/cjs/package.json
Expand Up @@ -2,7 +2,7 @@
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
"name": "glob",
"description": "the most correct and second fastest glob implementation in JavaScript",
"version": "10.2.2",
"version": "10.2.4",
"bin": "./dist/cjs/src/bin.js",
"repository": {
"type": "git",
Expand Down Expand Up @@ -63,7 +63,7 @@
"foreground-child": "^3.1.0",
"jackspeak": "^2.0.3",
"minimatch": "^9.0.0",
"minipass": "^5.0.0",
"minipass": "^5.0.0 || ^6.0.0",
"path-scurry": "^1.7.0"
},
"devDependencies": {
Expand Down
7 changes: 6 additions & 1 deletion node_modules/glob/dist/cjs/src/glob.js
Expand Up @@ -130,14 +130,19 @@ class Glob {
});
}
this.nocase = this.scurry.nocase;
// If you do nocase:true on a case-sensitive file system, then
// we need to use regexps instead of strings for non-magic
// path portions, because statting `aBc` won't return results
// for the file `AbC` for example.
const nocaseMagicOnly = this.platform === 'darwin' || this.platform === 'win32';
const mmo = {
// default nocase based on platform
...opts,
dot: this.dot,
matchBase: this.matchBase,
nobrace: this.nobrace,
nocase: this.nocase,
nocaseMagicOnly: true,
nocaseMagicOnly,
nocomment: true,
noext: this.noext,
nonegate: true,
Expand Down
7 changes: 6 additions & 1 deletion node_modules/glob/dist/mjs/glob.js
Expand Up @@ -127,14 +127,19 @@ export class Glob {
});
}
this.nocase = this.scurry.nocase;
// If you do nocase:true on a case-sensitive file system, then
// we need to use regexps instead of strings for non-magic
// path portions, because statting `aBc` won't return results
// for the file `AbC` for example.
const nocaseMagicOnly = this.platform === 'darwin' || this.platform === 'win32';
const mmo = {
// default nocase based on platform
...opts,
dot: this.dot,
matchBase: this.matchBase,
nobrace: this.nobrace,
nocase: this.nocase,
nocaseMagicOnly: true,
nocaseMagicOnly,
nocomment: true,
noext: this.noext,
nonegate: true,
Expand Down
2 changes: 1 addition & 1 deletion node_modules/glob/dist/mjs/package.json
@@ -1,4 +1,4 @@
{
"version": "10.2.1",
"version": "10.2.3",
"type": "module"
}
4 changes: 2 additions & 2 deletions node_modules/glob/package.json
Expand Up @@ -2,7 +2,7 @@
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
"name": "glob",
"description": "the most correct and second fastest glob implementation in JavaScript",
"version": "10.2.2",
"version": "10.2.4",
"bin": "./dist/cjs/src/bin.js",
"repository": {
"type": "git",
Expand Down Expand Up @@ -63,7 +63,7 @@
"foreground-child": "^3.1.0",
"jackspeak": "^2.0.3",
"minimatch": "^9.0.0",
"minipass": "^5.0.0",
"minipass": "^5.0.0 || ^6.0.0",
"path-scurry": "^1.7.0"
},
"devDependencies": {
Expand Down
10 changes: 5 additions & 5 deletions package-lock.json
Expand Up @@ -99,7 +99,7 @@
"columnify": "^1.6.0",
"fastest-levenshtein": "^1.0.16",
"fs-minipass": "^3.0.2",
"glob": "^10.2.2",
"glob": "^10.2.4",
"graceful-fs": "^4.2.11",
"hosted-git-info": "^6.1.1",
"ini": "^4.1.0",
Expand Down Expand Up @@ -5730,15 +5730,15 @@
"dev": true
},
"node_modules/glob": {
"version": "10.2.2",
"resolved": "https://registry.npmjs.org/glob/-/glob-10.2.2.tgz",
"integrity": "sha512-Xsa0BcxIC6th9UwNjZkhrMtNo/MnyRL8jGCP+uEwhA5oFOCY1f2s1/oNKY47xQ0Bg5nkjsfAEIej1VeH62bDDQ==",
"version": "10.2.4",
"resolved": "https://registry.npmjs.org/glob/-/glob-10.2.4.tgz",
"integrity": "sha512-fDboBse/sl1oXSLhIp0FcCJgzW9KmhC/q8ULTKC82zc+DL3TL7FNb8qlt5qqXN53MsKEUSIcb+7DLmEygOE5Yw==",
"inBundle": true,
"dependencies": {
"foreground-child": "^3.1.0",
"jackspeak": "^2.0.3",
"minimatch": "^9.0.0",
"minipass": "^5.0.0",
"minipass": "^5.0.0 || ^6.0.0",
"path-scurry": "^1.7.0"
},
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -68,7 +68,7 @@
"columnify": "^1.6.0",
"fastest-levenshtein": "^1.0.16",
"fs-minipass": "^3.0.2",
"glob": "^10.2.2",
"glob": "^10.2.4",
"graceful-fs": "^4.2.11",
"hosted-git-info": "^6.1.1",
"ini": "^4.1.0",
Expand Down

0 comments on commit 94d6ee7

Please sign in to comment.