Conduitry
Conduitry
If there were a nice way to use `require.resolve` that let us find the root of the package (as opposed to what they have as their `pkg.main`), then I wouldn't...
Without seeing what you tried, it's hard to debug anything, but from that page it sounds like you need to manually load all of the parsers this plugin uses as...
I interpreted the question as 'how do we figure out what the types are' not 'what do I do with my keyboard'
I just ran into this last week, actually. I ended up just combining the comments into a single comment so that it would stay at the top of the file.
I'm trying to figure out how scoping would work with this, and I'm not entirely sure. Currently, the template can access things in the instance or module scripts, and the...
That's almost certainly Shimport, yes. The good news is that caniuse is telling me that Firefox 67 is going to natively support dynamic imports, So whenever that comes out, Firefox...
You should be able to disable it by forking Sapper and editing the code that loads it in [get_page_handler.ts](https://github.com/sveltejs/sapper/blob/a52bdb2f4e1a722f06134b4065da2a32969e12e2/runtime/src/server/middleware/get_page_handler.ts#L284). I think using the webpack logic even when using Rollup would...
Typically, you would configure Rollup to output your whole bundle as CJS. Having the Svelte plugin output CJS just introduces extra overhead as Rollup has to convert back to ESM...
Sapper doesn't write into `node_modules/@sapper`; it writes into `src/node_modules/@sapper`, where nothing else is going to be installed. I don't know what Yarn is doing, or how what it's doing affects...
This seems to be the dangerous assumption, mentioned in those docs: > When you think about it, Yarn knows everything about your dependency tree - it evens installs it! I...