Otto Kruse
Otto Kruse
By the way, great tool! Thanks :)
As more options to solve this pile up here, I'd like to point out that using Jest to test code that has dependencies that have package imports (a.k.a [subpath imports](https://nodejs.org/api/packages.html#subpath-imports))...
Subpath imports are a great feature to write code that works for both Node.js and Web (by having a nice mechanism to separate out Node.js/Web specific code). Both esbuild and...
Workaround while we're waiting for a hero to create a PR to `@rollup/plugin-node-resolve` is to use `@rollup/plugin-alias`: ```js import alias from "@rollup/plugin-alias"; export default { // ... plugins: [ alias({...
Update: having looked at this again, a bit closer this time, subpath imports __are__ in fact supported already 🎉 by `@rollup/plugin-node-resolve`. I've configured rollup as follows now, and this nicely...
Think we are talking about the same thing yes. Quick look at the repro sample, it uses https://www.npmjs.com/package/rollup-plugin-node-resolve and not @rollup/plugin-node-resolve. Might be it? Otherwise it also uses subpath imports,...
Yeah it seems to really work now 😄 https://replit.com/@OttoKruse/rollup-plugin-repro (same case, slightly tweaked, updated rollup and used right node resolve lib)
Maybe very simple/dumb but I'd be happy if every method call would just have an async variant, that would do this under the hood: ```python # async variant of get()...
Same issue here. 0.2.3 works
Here's a stand-alone snippet for Python that works: https://gist.github.com/ottokruse/1c0f79d51cdaf82a3885f9b532df1ce5