From 3b28d55a62016959ed1d43fa23cdab764e546299 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 4 Jul 2026 00:18:18 +0000 Subject: [PATCH] chore(assert/is-constantcase): populate empty `keywords` in package.json Added the 15-item keyword list shared by sibling case-check packages (`is-camelcase`, `is-snakecase`, `is-kebabcase`, `is-pascalcase`, `is-uppercase`, `is-lowercase`) with the `isconstantcase`/`constantcase` slugs substituted. All other 342 assert packages carry a non-empty `keywords` array (99.7% conformance); `is-constantcase` was the sole outlier with `keywords: []`. --- .../assert/is-constantcase/package.json | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/assert/is-constantcase/package.json b/lib/node_modules/@stdlib/assert/is-constantcase/package.json index 75f4a7c5b757..599f82c1356f 100644 --- a/lib/node_modules/@stdlib/assert/is-constantcase/package.json +++ b/lib/node_modules/@stdlib/assert/is-constantcase/package.json @@ -51,5 +51,21 @@ "win32", "windows" ], - "keywords": [] + "keywords": [ + "stdlib", + "stdassert", + "assertion", + "assert", + "utilities", + "utility", + "utils", + "util", + "is", + "isconstantcase", + "constantcase", + "string", + "valid", + "validate", + "test" + ] }