Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DEPENDENCIES.md
Original file line number Diff line number Diff line change
Expand Up @@ -404,12 +404,12 @@ graph LR;
node-gyp-->env-paths;
node-gyp-->exponential-backoff;
node-gyp-->graceful-fs;
node-gyp-->make-fetch-happen;
node-gyp-->nopt;
node-gyp-->proc-log;
node-gyp-->semver;
node-gyp-->tar;
node-gyp-->tinyglobby;
node-gyp-->undici;
node-gyp-->which;
nopt-->abbrev;
npm-->abbrev;
Expand Down
1 change: 1 addition & 0 deletions node_modules/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@
!/tinyglobby/node_modules/picomatch
!/treeverse
!/tuf-js
!/undici
!/util-deprecate
!/validate-npm-package-name
!/walk-up-path
Expand Down
13 changes: 6 additions & 7 deletions node_modules/cidr-regex/dist/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//#region index.ts
const defaultOpts = { exact: false };
const v4src = "(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]\\d|\\d)(?:\\.(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]\\d|\\d)){3}\\/(3[0-2]|[12]?[0-9])";
const v6src = "(?:(?:[a-fA-F\\d]{1,4}:){7}(?:[a-fA-F\\d]{1,4}|:)|(?:[a-fA-F\\d]{1,4}:){6}(?:(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]\\d|\\d)(?:\\.(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]\\d|\\d)){3}|:[a-fA-F\\d]{1,4}|:)|(?:[a-fA-F\\d]{1,4}:){5}(?::(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]\\d|\\d)(?:\\.(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]\\d|\\d)){3}|(?::[a-fA-F\\d]{1,4}){1,2}|:)|(?:[a-fA-F\\d]{1,4}:){4}(?:(?::[a-fA-F\\d]{1,4})?:(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]\\d|\\d)(?:\\.(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]\\d|\\d)){3}|(?::[a-fA-F\\d]{1,4}){1,3}|:)|(?:[a-fA-F\\d]{1,4}:){3}(?:(?::[a-fA-F\\d]{1,4}){0,2}:(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]\\d|\\d)(?:\\.(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]\\d|\\d)){3}|(?::[a-fA-F\\d]{1,4}){1,4}|:)|(?:[a-fA-F\\d]{1,4}:){2}(?:(?::[a-fA-F\\d]{1,4}){0,3}:(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]\\d|\\d)(?:\\.(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]\\d|\\d)){3}|(?::[a-fA-F\\d]{1,4}){1,5}|:)|[a-fA-F\\d]{1,4}:(?:(?::[a-fA-F\\d]{1,4}){0,4}:(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]\\d|\\d)(?:\\.(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]\\d|\\d)){3}|(?::[a-fA-F\\d]{1,4}){1,6}|:)|:(?:(?::[a-fA-F\\d]{1,4}){0,5}:(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]\\d|\\d)(?:\\.(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]\\d|\\d)){3}|(?::[a-fA-F\\d]{1,4}){1,7}|:))(?:%[0-9a-zA-Z]+)?\\/(12[0-8]|1[01][0-9]|[1-9]?[0-9])";
Expand All @@ -9,14 +10,12 @@ const v4global = new RegExp(v4src, "g");
const v6global = new RegExp(v6src, "g");
const v46global = new RegExp(v46src, "g");
function resetRegex(re) {
re.lastIndex = 0;
return re;
re.lastIndex = 0;
return re;
}
const cidrRegex = ({ exact } = defaultOpts) => exact ? v46exact : resetRegex(v46global);
const v4 = cidrRegex.v4 = ({ exact } = defaultOpts) => exact ? v4exact : resetRegex(v4global);
const v6 = cidrRegex.v6 = ({ exact } = defaultOpts) => exact ? v6exact : resetRegex(v6global);
export {
cidrRegex as default,
v4,
v6
};

//#endregion
export { cidrRegex as default, v4, v6 };
28 changes: 14 additions & 14 deletions node_modules/cidr-regex/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cidr-regex",
"version": "5.0.3",
"version": "5.0.4",
"description": "Regular expression for matching IP addresses in CIDR notation",
"author": "silverwind <me@silverwind.io>",
"contributors": [
Expand All @@ -20,19 +20,19 @@
"node": ">=20"
},
"devDependencies": {
"@types/node": "25.0.10",
"@typescript/native-preview": "7.0.0-dev.20260212.1",
"eslint": "9.39.2",
"eslint-config-silverwind": "120.1.2",
"@types/node": "25.6.0",
"@typescript/native-preview": "7.0.0-dev.20260420.1",
"eslint": "10.2.1",
"eslint-config-silverwind": "131.0.5",
"jest-extended": "7.0.0",
"typescript": "5.9.3",
"typescript-config-silverwind": "14.0.0",
"updates": "17.0.8",
"updates-config-silverwind": "1.0.3",
"versions": "14.0.3",
"vite": "7.3.1",
"vite-config-silverwind": "6.0.9",
"vitest": "4.0.18",
"vitest-config-silverwind": "10.6.1"
"tsdown": "0.21.9",
"tsdown-config-silverwind": "2.1.0",
"typescript": "6.0.3",
"typescript-config-silverwind": "18.0.0",
"updates": "17.15.5",
"updates-config-silverwind": "2.1.0",
"versions": "15.0.0",
"vitest": "4.1.4",
"vitest-config-silverwind": "11.3.0"
}
}
10 changes: 5 additions & 5 deletions node_modules/is-cidr/dist/index.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { v4 as v4$1, v6 as v6$1 } from "cidr-regex";

//#region index.ts
const re4 = v4$1({ exact: true });
const re6 = v6$1({ exact: true });
const isCidr = (str) => re4.test(str) ? 4 : re6.test(str) ? 6 : 0;
const v4 = isCidr.v4 = (str) => re4.test(str);
const v6 = isCidr.v6 = (str) => re6.test(str);
export {
isCidr as default,
v4,
v6
};

//#endregion
export { isCidr as default, v4, v6 };
28 changes: 15 additions & 13 deletions node_modules/is-cidr/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "is-cidr",
"version": "6.0.3",
"version": "6.0.4",
"description": "Check if a string is an IP address in CIDR notation",
"author": "silverwind <me@silverwind.io>",
"contributors": [
Expand All @@ -20,20 +20,22 @@
"node": ">=20"
},
"dependencies": {
"cidr-regex": "^5.0.1"
"cidr-regex": "^5.0.4"
},
"devDependencies": {
"@types/node": "25.0.10",
"eslint": "9.39.2",
"eslint-config-silverwind": "120.1.2",
"@types/node": "25.6.0",
"@typescript/native-preview": "7.0.0-dev.20260420.1",
"eslint": "10.2.1",
"eslint-config-silverwind": "131.0.5",
"jest-extended": "7.0.0",
"typescript": "5.9.3",
"typescript-config-silverwind": "14.0.0",
"updates": "17.0.8",
"versions": "14.0.3",
"vite": "7.3.1",
"vite-config-silverwind": "6.0.9",
"vitest": "4.0.18",
"vitest-config-silverwind": "10.6.1"
"tsdown": "0.21.9",
"tsdown-config-silverwind": "2.1.0",
"typescript": "6.0.3",
"typescript-config-silverwind": "18.0.0",
"updates": "17.15.5",
"updates-config-silverwind": "2.1.0",
"versions": "15.0.0",
"vitest": "4.1.4",
"vitest-config-silverwind": "11.3.0"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
const dummy = { hasSubscribers: false };
export const metrics = dummy;
export const tracing = dummy;
//# sourceMappingURL=diagnostics-channel-browser.mjs.map
Loading
Loading