From ea2a88ff864365760ca3ba736d6b17674d2e2fd8 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 7 Jul 2026 04:24:31 +0000 Subject: [PATCH 1/2] chore(regexp/regexp): add missing `match` keyword MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds the `match` keyword to `@stdlib/regexp/regexp/package.json`. The keyword is present in 23 of 27 sibling packages (85.2%) — all sibling regex-producer packages that describe a match target carry it. The package's own JSDoc summary reads "regular expression to parse a regular expression string", i.e. it matches regex-literal syntax; the absent keyword contradicts that description. --- lib/node_modules/@stdlib/regexp/regexp/package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/regexp/regexp/package.json b/lib/node_modules/@stdlib/regexp/regexp/package.json index 4e3e7a2d2746..9c1b70456a9d 100644 --- a/lib/node_modules/@stdlib/regexp/regexp/package.json +++ b/lib/node_modules/@stdlib/regexp/regexp/package.json @@ -57,6 +57,7 @@ "expression", "string", "pattern", - "flags" + "flags", + "match" ] } From 6f041b9071d00d4560d6d587de1147bf9cfa393f Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 7 Jul 2026 04:24:36 +0000 Subject: [PATCH 2/2] chore(regexp/extended-length-path): add missing `match` keyword Adds the `match` keyword to `@stdlib/regexp/extended-length-path/package.json`. The keyword is present in 23 of 27 sibling packages (85.2%). The package's own `main.js` describes returning a regular expression that matches an extended-length Windows path; the absent keyword contradicts that description. --- .../@stdlib/regexp/extended-length-path/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/node_modules/@stdlib/regexp/extended-length-path/package.json b/lib/node_modules/@stdlib/regexp/extended-length-path/package.json index 53eb120d9c18..21a329ce66de 100644 --- a/lib/node_modules/@stdlib/regexp/extended-length-path/package.json +++ b/lib/node_modules/@stdlib/regexp/extended-length-path/package.json @@ -57,6 +57,7 @@ "expression", "path", "test", + "match", "file", "filename", "windows",