Skip to content

Commit 29ebb23

Browse files
authored
Merge pull request #21179 from zhangqin2-yewu/feat_repair_semicolon
fix: Fix missing semicolon in pre-publish.js.
2 parents 8c4653f + 7db0681 commit 29ebb23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/pre-publish.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ async function runTsCompile(localTs, compilerOptions, srcPathList) {
239239
}
240240
});
241241
if (allDiagnostics.length > 0) {
242-
throw new Error('TypeScript Compile Failed')
242+
throw new Error('TypeScript Compile Failed');
243243
}
244244
}
245245
module.exports.runTsCompile = runTsCompile;

0 commit comments

Comments
 (0)