developit / developit/microbundle
Broken build due to mangled dependency props
Offen
- Vorherrschende Sprache
- JavaScript
- Sterne
- 8.1k
- Forks
- 358
- PR-Merge-Kennzahlen
- Keine gemergten PRs in 30 T.
Beschreibung
I have some code that imports a named export of a dependency as follows:
```js
import { _fn } from '@x/y';
...
_fn(...); // calling _fn
```
With mangle configured with `"regex": "^_[^_]"`, the default build (`index.js`) transpiles this to:
```js
const z = require('@x/y');
...
z.a(...); // calling _fn???
```
Disabling mangling works as expected:
```js
const z = require('@x/y');
...
z._fn(...); // calling _fn
```
There is a similar problem with the umd build.
Any way around this?
Beitragsleitfaden
Für dieses Repository ist kein Beitragsleitfaden indexiert
Bewertung
Dieses Issue wurde noch nicht bewertet.