Recent Entries 4
- snippet tip 120d agoesbuild — JavaScript bundler and minifier built for speed. More information: <https://esbuild.github.io/api/#gHow to use the `esbuild` command: JavaScript bundler and minifier built for speed. More information: <https://esbuild.github.io/api/#general-options>.
- gotcha moderate 124d agoSource maps for Sentry: resolving minified stack traces to original sourceSentry shows stack traces pointing to minified production bundles: `at a.b (main.abc123.js:1:45823)`. These are useless for debugging. The original file names, line numbers, and variable names are lost.
- pattern tip 124d agotsup: zero-config TypeScript library bundler built on esbuildPublishing a TypeScript library requires a complex Rollup or tsc setup to produce ESM, CJS, and type declarations. Configuration is verbose and fragile.
- principle moderate 124d agoesbuild: why it is fast and where it cannot replace BabelTeams assume esbuild is a full Babel replacement and remove Babel from their pipeline, then discover that certain transforms (decorators, custom Babel plugins, some macro libraries) break silently.