microbundle icon indicating copy to clipboard operation
microbundle copied to clipboard

📦 Zero-configuration bundler for tiny modules.

Results 114 microbundle issues
Sort by recently updated
recently updated
newest added

In node 13, there is a new option available: [`exports`](https://nodejs.org/api/esm.html#esm_conditional_exports). As this will be the new standard for defining packages available for node/browsers/etc, it could be nice to use it...

enhancement :rocket:
important

## Summary Closes #884 and #825 Each output can be individually given output paths now, there's no sharing of names/paths. This removes an over reliance upon `"main"` to provide output...

I love microbundle but sometimes we really would need a custom plugin or to overwrite a rollup config. Therefore I would suggest the following: new cli option: ``` --extendRollupConfig 'extend.js'...

increased scope

Hi, consider a monorepo that has some TypeScript packages kept in `packages/*`. Now one of these packages, let's call it `b`, depends on package `a`. Package `a` has entry point...

upstream
TypeScript

I’ve looked at browser support for ES6 + async/await for our sites and as it looks transpiling to ES5 might not be worth it. It makes less than 1% difference...

Addresses comments in #66 and #73. Went ahead with a PR just so that we can see what it'd look/feel like in action. **_TLDR:_** * Only enable compression & sourcemaps...

I want to add Polyfill to new syntax such as Object.assign when packaging, for example, add useBuiltIns:'entry' to the corresponding babel configuration. What should I do, create a new babel...

question :grey_question:

Having this implemented would resolve [this issue](https://github.com/developit/unistore/issues/62). The idea is that we need to output private `package.json` files to support appropriate es/cjs resolving, I believe that @kentcdodds got it "right"...

In [rollup's documentation](https://github.com/rollup/plugins/tree/master/packages/babel#babelhelpers), there the following excerpt: > 'runtime' - you should use this especially when building libraries with Rollup. It has to be used in combination with @babel/plugin-transform-runtime and...

discussion