microbundle
microbundle copied to clipboard
📦 Zero-configuration bundler for tiny modules.
Hello there 👋, I recently switched to microbundle for a bunch of my libs and I love it so far, however, I ran into an issue where the modern bundle...
https://www.npmjs.com/package/ttypescript The main benefit of going with this solution is being able to specify transformer plugins in `tsconfig.json` so it's an easy configuration
👋🏼 I'm currently working with microbundle to package a service worker library. I have a file [`index.mjs`](https://github.com/TimDaub/web3-service-worker-cache/blob/demo/src/index.mjs) that takes care of initializing and handling the SW in the main thread....
There is a noisy warning that occurs if the bundle imports a module which is compiled using TypeScript's `tsc`: ``` The 'this' keyword is equivalent to 'undefined' at the top...
It would be very nice if I could see how long it took to perform microbundle and it would be even nicer if I could see how long it took...
_This is a feature request/Proposal_ As a user of microbundle I want ways to configure which imports are to be considered external. In order to reduce my bundle size and...
Hi guys, I have run into some really weird situation here. Here is some [demo code](https://github.com/qjnz/re-export-override-demo) here, which does not use `microbundle` in that project. What I am trying to...
**[Click to see workaround](https://github.com/developit/microbundle/issues/705#issuecomment-675901881)** ### How to reproduce error Execute this script in an empty directory ```bash #!/bin/bash cat > index.js
In both [Readme](https://github.com/developit/microbundle/blob/master/README.md) and [mangle.json wiki page](https://github.com/developit/microbundle/wiki/mangle.json), it mentions about how to mangle properties using mangle.json file. It said: > This can be done in a mangle.json configuration file, [.....]...
``` export const a = 10; export const b = 10; ``` will generates following in microbundle, which missing `__esModule` flag 1. ``` // lib1.js exports.a=10,exports.b=10; //# sourceMappingURL=index.js.map ``` while...