fix: build js declarations (#141)

This commit is contained in:
sigoden
2024-12-11 20:55:58 +08:00
committed by GitHub
parent 20d1ec47f9
commit 0fd1f1fe4e
2 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -53,7 +53,7 @@ function extractFunctions(contents, isTool) {
continue;
}
if (isTool) {
if (new RegExp(`function ${TOOL_ENTRY_FUNC}`).test(line)) {
if (new RegExp(`^export (async )?function ${TOOL_ENTRY_FUNC}|^exports\.${TOOL_ENTRY_FUNC}`).test(line)) {
output.push({
funcName: TOOL_ENTRY_FUNC,
jsdoc,