Compare commits

...

2 Commits

Author SHA1 Message Date
CrazyMax 041b2bc7bf Merge pull request #284 from crazy-max/fix-esbuild
preserve names in esbuild bundle
2026-06-29 16:15:25 +02:00
CrazyMax b99bfad9ec preserve names in esbuild bundle
Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
2026-06-29 15:05:55 +02:00
3 changed files with 107 additions and 107 deletions
Generated Vendored
+104 -104
View File
File diff suppressed because one or more lines are too long
Generated Vendored
+2 -2
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -4,7 +4,7 @@
"type": "module",
"main": "src/main.ts",
"scripts": {
"build": "esbuild src/main.ts --bundle --platform=node --target=node24 --format=cjs --outfile=dist/index.cjs --sourcemap --minify && yarn run license",
"build": "esbuild src/main.ts --bundle --platform=node --target=node24 --format=cjs --outfile=dist/index.cjs --sourcemap --minify --keep-names && yarn run license",
"lint": "eslint --max-warnings=0 .",
"format": "eslint --fix .",
"test": "vitest run",