Daniel
Daniel
> Maybe you can work around that by using a https://github.com/terser/terser/issues/513#issuecomment-554685420 that uses an IIFE? That works! But I spent like one hour on changing `export *` to exporting everything...
The pure `(0,`-bug also very much affects users of solid-js. Solid-js gets included and all solid-js components that exist anywhere get included because solid's JSX transform has a copy of...
I'm currently writing a babel transformer with chatGPT to fix the pure comment part of this because I had to write another one to rewrite some imports because most of...
Nevermind, I answered my question myself: it doesn't always suffice, sometimes there are also `export` statements but sometimes nothing is exported when dropping the $parcel$export calls edit: nevermind on the...
+1 We have hacked this together the following way in our code because parcel doesn't reload the page for CSS changes when making a library build (https://github.com/parcel-bundler/parcel/issues/6506). It works because...
> So we'll have to look into publishing ESM versions of the packages... +1, I just ran into that @parcel/fs doesn't have an ESM export ``` daniel@mmmmmmmmmm parcel-test % yarn...
I'm looking for a way to make my library run both in bundlers that do node emulation and in bundlers that don't, I take from this issue that that's currently...
I'm getting this output with parcel `2.0.0-nightly.1347+824ddbe70` so I assume it's still an issue?
@kishorenc is this on your roadmap?
@birkskyum thanks for testing. For some reason it now works flawlessly - `yarn install` succeeds. Must have been a fluke. However, now when doing `yarn dev` I run into this:...