Niklas Mischkulnig

Results 517 comments of Niklas Mischkulnig

That should be working. You don't need a parcelrc, the postcss transformer is part of the default config: https://github.com/parcel-bundler/parcel/blob/39b330e74cbfb735452b8291dea5e29e596a332d/packages/configs/default/index.json#L27

If you only want to use Parcel to build the example and not the library itself, add this to package.json: ``` "targets: { "module": false, "main": false, "types": false, }...

We only build `fs-search.linux-arm-gnueabihf.node` at the moment, not musl. - https://unpkg.com/browse/@parcel/[email protected]/ - https://github.com/parcel-bundler/parcel/blob/v2/.github/workflows/nightly-release.yml

Parcel packages which are missing freebsd binaries: - https://unpkg.com/browse/@parcel/[email protected]/ - https://unpkg.com/browse/@parcel/[email protected]/ - https://unpkg.com/browse/@parcel/[email protected]/ - https://unpkg.com/browse/@parcel/[email protected]/ - https://unpkg.com/browse/@parcel/[email protected]/package.json

I would say this is because Parcel doesn't think that `design-system/LoadingBar/view.js` contains JSX. Usually that gets enabled when react/preact/... is detected in package.json > I tried making a code sample...

There are prebuilds for Apple Silicon with the watcher package: https://unpkg.com/browse/@parcel/[email protected]/prebuilds/ So the question is which version of the watcher you're using here

Tests regarding building CommonJS and ESM libraries are here: https://github.com/parcel-bundler/parcel/blob/v2/packages/core/integration-tests/test/output-formats.js The problematic code is somewhere in [here](https://github.com/parcel-bundler/parcel/blob/3eb0fc79fe22d5875e1d2cbf71d03773610818ec/packages/packagers/js/src/ScopeHoistingPackager.js#L348-L663) probably. But the scope hoisting packager is rather complex, so good luck

Could you try again with the latest `parcel@nightly` release? The hashing system was recently overhauled.

Can someone else confirm that this is fixed?

> In my case it happens when I try to import a file using a named pipeline, e.g. import css from 'bundle-text:./style.css', and only when I try to build a...