bridgerapi 1.9.0 → 1.9.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/cli.js +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -131,7 +131,7 @@ function extractModelIds(text) {
|
|
|
131
131
|
const seen = /* @__PURE__ */ new Set();
|
|
132
132
|
const re = /\b([a-z][a-z0-9]*(?:[.\-][a-z0-9]+)+)\b/g;
|
|
133
133
|
for (const [, id] of text.matchAll(re)) {
|
|
134
|
-
if (id.length >= 5 && !SKIP_TOKENS.has(id)) seen.add(id);
|
|
134
|
+
if (id.length >= 5 && /\d/.test(id) && !SKIP_TOKENS.has(id)) seen.add(id);
|
|
135
135
|
}
|
|
136
136
|
return [...seen];
|
|
137
137
|
}
|