Skip to content

Commit f078c82

Browse files
committed
deps: glob@10.3.14
1 parent 58f773c commit f078c82

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

node_modules/glob/dist/commonjs/glob.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
33
exports.Glob = void 0;
44
const minimatch_1 = require("minimatch");
55
const path_scurry_1 = require("path-scurry");
6-
const url_1 = require("url");
6+
const node_url_1 = require("node:url");
77
const pattern_js_1 = require("./pattern.js");
88
const walker_js_1 = require("./walker.js");
99
// if no process global, just call it linux.
@@ -77,7 +77,7 @@ class Glob {
7777
this.cwd = '';
7878
}
7979
else if (opts.cwd instanceof URL || opts.cwd.startsWith('file://')) {
80-
opts.cwd = (0, url_1.fileURLToPath)(opts.cwd);
80+
opts.cwd = (0, node_url_1.fileURLToPath)(opts.cwd);
8181
}
8282
this.cwd = opts.cwd || '';
8383
this.root = opts.root;

node_modules/glob/dist/esm/glob.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Minimatch } from 'minimatch';
22
import { PathScurry, PathScurryDarwin, PathScurryPosix, PathScurryWin32, } from 'path-scurry';
3-
import { fileURLToPath } from 'url';
3+
import { fileURLToPath } from 'node:url';
44
import { Pattern } from './pattern.js';
55
import { GlobStream, GlobWalker } from './walker.js';
66
// if no process global, just call it linux.

node_modules/glob/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"author": "Isaac Z. Schlueter <i@izs.me> (https://blog.izs.me/)",
33
"name": "glob",
44
"description": "the most correct and second fastest glob implementation in JavaScript",
5-
"version": "10.3.12",
5+
"version": "10.3.14",
66
"type": "module",
77
"tshy": {
88
"main": true,
@@ -70,7 +70,7 @@
7070
"jackspeak": "^2.3.6",
7171
"minimatch": "^9.0.1",
7272
"minipass": "^7.0.4",
73-
"path-scurry": "^1.10.2"
73+
"path-scurry": "^1.11.0"
7474
},
7575
"devDependencies": {
7676
"@types/node": "^20.11.30",

package-lock.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104
"cli-columns": "^4.0.0",
105105
"fastest-levenshtein": "^1.0.16",
106106
"fs-minipass": "^3.0.3",
107-
"glob": "^10.3.12",
107+
"glob": "^10.3.14",
108108
"graceful-fs": "^4.2.11",
109109
"hosted-git-info": "^7.0.2",
110110
"ini": "^4.1.2",
@@ -5465,16 +5465,16 @@
54655465
"dev": true
54665466
},
54675467
"node_modules/glob": {
5468-
"version": "10.3.12",
5469-
"resolved": "https://registry.npmjs.org/glob/-/glob-10.3.12.tgz",
5470-
"integrity": "sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==",
5468+
"version": "10.3.14",
5469+
"resolved": "https://registry.npmjs.org/glob/-/glob-10.3.14.tgz",
5470+
"integrity": "sha512-4fkAqu93xe9Mk7le9v0y3VrPDqLKHarNi2s4Pv7f2yOvfhWfhc7hRPHC/JyqMqb8B/Dt/eGS4n7ykwf3fOsl8g==",
54715471
"inBundle": true,
54725472
"dependencies": {
54735473
"foreground-child": "^3.1.0",
54745474
"jackspeak": "^2.3.6",
54755475
"minimatch": "^9.0.1",
54765476
"minipass": "^7.0.4",
5477-
"path-scurry": "^1.10.2"
5477+
"path-scurry": "^1.11.0"
54785478
},
54795479
"bin": {
54805480
"glob": "dist/esm/bin.mjs"

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
"cli-columns": "^4.0.0",
7070
"fastest-levenshtein": "^1.0.16",
7171
"fs-minipass": "^3.0.3",
72-
"glob": "^10.3.12",
72+
"glob": "^10.3.14",
7373
"graceful-fs": "^4.2.11",
7474
"hosted-git-info": "^7.0.2",
7575
"ini": "^4.1.2",

0 commit comments

Comments
 (0)