We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 191d7c6 commit dc8cbddCopy full SHA for dc8cbdd
13 files changed
build.mjs
@@ -66,6 +66,10 @@ const context = await esbuild.context({
66
// Include upload-lib.ts as an entry point for use in testing environments.
67
entryPoints: globSync([`${SRC_DIR}/*-action.ts`, `${SRC_DIR}/*-action-post.ts`, "src/upload-lib.ts"]),
68
bundle: true,
69
+ minifySyntax: true,
70
+ minifyWhitespace: true,
71
+ // For better stack traces.
72
+ minifyIdentifiers: false,
73
format: "cjs",
74
outdir: OUT_DIR,
75
platform: "node",
0 commit comments