Skip to content

Commit

Permalink
fix: spelling errors in the esbuild target
Browse files Browse the repository at this point in the history
  • Loading branch information
AnYiEE committed Dec 21, 2023
1 parent b2fc9ea commit f0f1566
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/modules/utils/build-util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ const bundle = async (inputFilePath: string, code: string): Promise<string> => {
resolveDir: rootDir,
sourcefile: inputFilePath,
},
target: GLOBAL_REQUIRES_ES6 ? 'exnext' : 'es5',
target: GLOBAL_REQUIRES_ES6 ? 'esnext' : 'es5',
});

return getBuildResult(buildResult);
Expand Down

0 comments on commit f0f1566

Please sign in to comment.