Closed mcous closed 1 year ago
Target imports more specifically to reduce action bundle size
Before:
[dist] [dist] > @jsdevtools/npm-publish@3.0.1 build:dist [dist] > esbuild src/action/main.ts --bundle --sourcemap --outdir=dist --platform=node --target=node16 [dist] [dist] [dist] dist/main.js 376.3kb [dist] dist/main.js.map 587.1kb
After:
[dist] [dist] > @jsdevtools/npm-publish@3.0.1 build:dist [dist] > esbuild src/action/main.ts --bundle --sourcemap --outdir=dist --platform=node --target=node16 [dist] [dist] [dist] dist/main.js 241.7kb [dist] dist/main.js.map 349.9kb
Target imports more specifically to reduce action bundle size
Before:
After: