developit / developit/microbundle

Broken build due to mangled dependency props

オープン
#819 コメント 3 件 リアクション 0 件 担当者 0 名 GitHub で見る
主要言語
JavaScript
スター
8.1k
フォーク
358
PR マージ指標
30日以内にマージされた PR はありません

説明

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?

コントリビューションガイド

このリポジトリのコントリビューションガイドは索引されていません

評価

この issue はまだ評価されていません。

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。