@rely-ai/caliber 1.12.0 → 1.12.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin.js +1 -1
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -4275,7 +4275,7 @@ function validateDocumentedCommands(dir) {
|
|
|
4275
4275
|
const seen = /* @__PURE__ */ new Set();
|
|
4276
4276
|
let match;
|
|
4277
4277
|
while ((match = cmdPattern.exec(claudeMd)) !== null) {
|
|
4278
|
-
const scriptName = match[1];
|
|
4278
|
+
const scriptName = match[1].replace(/[.,;:!?)]+$/, "");
|
|
4279
4279
|
if (seen.has(scriptName)) continue;
|
|
4280
4280
|
seen.add(scriptName);
|
|
4281
4281
|
const builtins = /* @__PURE__ */ new Set(["install", "ci", "test", "start", "init", "publish", "pack", "link", "uninstall"]);
|
package/package.json
CHANGED