From a79ef6866069c2b5ce96de4e2ad483fbceeed5da Mon Sep 17 00:00:00 2001 From: wangzhiyusss Date: Fri, 6 Jun 2025 16:44:23 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=89=93=E5=8C=85=E8=BF=87?= =?UTF-8?q?=E7=A8=8B=E4=B8=ADarkts=E6=A0=87=E7=AD=BE=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: wangzhiyusss --- build-tools/handleApiFiles.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-tools/handleApiFiles.js b/build-tools/handleApiFiles.js index 50b633576c..2cad66e2f0 100755 --- a/build-tools/handleApiFiles.js +++ b/build-tools/handleApiFiles.js @@ -403,9 +403,6 @@ function handleNoTagFileInSecondType(sourceFile, outputPath, fullPath) { const fileContent = sourceFile.getFullText(); let newContent = ''; // API未标@arkts 1.2或@arkts 1.1&1.2标签,删除文件 - // TODO: 主干挑单临时处理 - writeFile(outputPath, saveLatestJsDoc(fileContent)); - return; if (!arktsTagRegx.test(fileContent)) { if (fullPath.endsWith('.d.ts') && hasEtsFile(fullPath) || fullPath.endsWith('.d.ets') && hasTsFile(fullPath)) { newContent = saveLatestJsDoc(fileContent); -- Gitee