microbundle
microbundle copied to clipboard
📦 Zero-configuration bundler for tiny modules.
I'm often wanting to step through the source of Preact or Signals, but doing this is difficult since we ship minified code. In this PR I add an option to...
Ran Claude's init command to generate this
Possibly somewhat related to #1085. Given a package.json: ```json { "main": "./lib/index.cjs", "module": "./lib/index.js", "type": "module", "dependencies": { "some-client-with-matching-esm-and-tsconfig": "^x.x.x" }, "exports": { ".": { "require": { "types": "./lib/index.d.ts", "default":...
Minifying a library is actively hostile to patching tools like [patch-package](https://github.com/ds300/patch-package), [pnpm-patch-i](https://github.com/antfu/pnpm-patch-i), etc. It makes patches impossible to create without cloning the library and running its build step. On top...