From 250f7eee41bfe55a5d827dea1a4dafe673b3b487 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 6 Jul 2026 16:22:49 +0000 Subject: [PATCH 1/2] chore: add missing keywords to `array/base/assert/contains` Add `test` and `validate` keywords to bring `array/base/assert/contains` in line with 24/26 (92%) of its `array/base/assert/*` siblings, which consistently include both keywords in their `package.json`. The functional character of the package - testing whether an array contains a given value - matches the assertion utility siblings that already carry these keywords (e.g. `has-equal-values`, `has-same-values`). Keywords only affect discoverability metadata; no source code, tests, or documented behavior change. --- .../@stdlib/array/base/assert/contains/package.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/array/base/assert/contains/package.json b/lib/node_modules/@stdlib/array/base/assert/contains/package.json index 62e2812c15ac..68420e99ac12 100644 --- a/lib/node_modules/@stdlib/array/base/assert/contains/package.json +++ b/lib/node_modules/@stdlib/array/base/assert/contains/package.json @@ -56,8 +56,10 @@ "structure", "array", "generic", + "test", "contains", "search", - "assert" + "assert", + "validate" ] } From 72bfb679058014a2d40eb0416326cd701c17d5bb Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 6 Jul 2026 16:22:59 +0000 Subject: [PATCH 2/2] chore: add missing keywords to `array/base/assert/is-sorted-ascending` Add `test` and `validate` keywords to bring `array/base/assert/is-sorted-ascending` in line with 24/26 (92%) of its `array/base/assert/*` siblings, which consistently include both keywords in their `package.json`. The functional character of the package - testing whether an array is sorted in ascending order - matches the assertion utility siblings that already carry these keywords. Keywords only affect discoverability metadata; no source code, tests, or documented behavior change. --- .../array/base/assert/is-sorted-ascending/package.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/array/base/assert/is-sorted-ascending/package.json b/lib/node_modules/@stdlib/array/base/assert/is-sorted-ascending/package.json index 7fe5f635babb..2e6045938eea 100644 --- a/lib/node_modules/@stdlib/array/base/assert/is-sorted-ascending/package.json +++ b/lib/node_modules/@stdlib/array/base/assert/is-sorted-ascending/package.json @@ -56,9 +56,11 @@ "structure", "array", "generic", + "test", "sorted", "ascending", "ordered", - "assert" + "assert", + "validate" ] }