Nikola Pavlovic
Nikola Pavlovic
I consider myself somewhat literate when it comes to functional programming (it was love at first sight), so naturally (or not?), I went straight down to the monad definition, kind...
In my case, node-fetch is already stubbed - as is for every project using happy-dom with vitest, since happy-dom uses node-fetch under the hood. The issue however is present, so...
Quite late to the party but, since the issue remains Open, unless I'm mistaken, this depends on `treeshake.moduleSideEffects`. Which is to say: you can preserve the order by setting the...
Let me get this straight, the solution is for the consumers to: - download an orphaned yarn bin - append the bin location to `$GITHUB_PATH` - which will prove an...
```ts import { createFilter } from '@rollup/pluginutils'; export default { // ..., treeshake: { // ..., moduleSideEffects: true || createFilter('...glob returning the files in question') }, // ..., } ```...