From fe7d99817b64c4916162f64ffd99df2adb9837aa Mon Sep 17 00:00:00 2001 From: Andy Date: Tue, 15 Oct 2024 13:06:39 +0200 Subject: [PATCH] Bump `path-to-regexp` to `3.3.0` (#217) --- package.json | 2 +- src/glob-slash.js | 2 +- src/index.js | 10 +++++----- test/integration.test.js | 2 +- yarn.lock | 8 ++++---- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/package.json b/package.json index 8ab03ec..4e45a3f 100644 --- a/package.json +++ b/package.json @@ -62,7 +62,7 @@ "mime-types": "2.1.18", "minimatch": "3.1.2", "path-is-inside": "1.0.2", - "path-to-regexp": "2.2.1", + "path-to-regexp": "3.3.0", "range-parser": "1.2.0" }, "packageManager": "yarn@1.22.19+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447" diff --git a/src/glob-slash.js b/src/glob-slash.js index 6c3590a..08187e4 100644 --- a/src/glob-slash.js +++ b/src/glob-slash.js @@ -2,7 +2,7 @@ // This is adopted from https://github.com/scottcorgan/glob-slash/ -const path = require('node:path'); +const path = require('path'); const normalize = value => path.posix.normalize(path.posix.join('/', value)); module.exports = value => (value.charAt(0) === '!' ? `!${normalize(value.substr(1))}` : normalize(value)); diff --git a/src/index.js b/src/index.js index 37df127..34c2501 100644 --- a/src/index.js +++ b/src/index.js @@ -1,11 +1,11 @@ // Native -const {promisify} = require('node:util'); -const path = require('node:path'); -const {createHash} = require('node:crypto'); -const {realpath, lstat, createReadStream, readdir} = require('node:fs'); +const {promisify} = require('util'); +const path = require('path'); +const {createHash} = require('crypto'); +const {realpath, lstat, createReadStream, readdir} = require('fs'); // Packages -const url = require('node:url'); +const url = require('url'); const slasher = require('./glob-slash'); const minimatch = require('minimatch'); const pathToRegExp = require('path-to-regexp'); diff --git a/test/integration.test.js b/test/integration.test.js index 326377b..d0e5d67 100644 --- a/test/integration.test.js +++ b/test/integration.test.js @@ -1,5 +1,5 @@ // Native -const path = require('node:path'); +const path = require('path'); // Packages const listen = require('test-listen'); diff --git a/yarn.lock b/yarn.lock index 4c09c70..493cf7b 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2575,10 +2575,10 @@ path-parse@^1.0.7: resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== -path-to-regexp@2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-2.2.1.tgz#90b617025a16381a879bc82a38d4e8bdeb2bcf45" - integrity sha512-gu9bD6Ta5bwGrrU8muHzVOBFFREpp2iRkVfhBJahwJ6p6Xw20SjT0MxLnwkjOibQmGSYhiUnf2FLe7k+jcFmGQ== +path-to-regexp@3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-3.3.0.tgz#f7f31d32e8518c2660862b644414b6d5c63a611b" + integrity sha512-qyCH421YQPS2WFDxDjftfc1ZR5WKQzVzqsp4n9M2kQhVOo/ByahFoUNJfl58kOcEGfQ//7weFTDhm+ss8Ecxgw== performance-now@^2.1.0: version "2.1.0"