Bjorn Lu
Bjorn Lu
It seems like it's part of the ESM spec that it fails silently. Here's a [stackblitz example](https://stackblitz.com/edit/vitejs-vite-jkovee?file=main.js) of the deadlock happening in browsers too. If you run it through something...
I tried looking into it but it's a little complicated than expected. I can fix the repro's specific case by skipping deleting the shared chunks' dependent entries (used for optimization)...
It looks like in Node 22, there's now a warning logged instead of silently working: ```bash Warning: Detected unsettled top-level await at file:///Users/bjorn/Work/test/main-3d8a8f11.js:3 const mod = await import('./module_1-ae086170.js'); ``` I...
Yeah I think we can check `engines.node` to test the support range, but even without it set I think the tooling that don't support `exports` are far back now that...
Unfortunately this seems like an edgecase with the current architecture. when extracting out the contents in the iframe declaration, any variables that are derived from the state of the component,...
Not sure if they are plans to support this per https://kit.svelte.dev/faq#integrations-how-do-i-use-with-yarn-how-do-i-use-with-yarn-3
Oh sorry I didn't know that 😅 I'm not sure how yarn pnp affects `.svelte-kit` caching, but it seems like yarn is doing something off. Does specifying `.yarn` in `server.fs.allow`...
If anyone is able to provide a repro or send a PR, we're happy to take a look.
It looks like since v8.25.0 ([diff between v8.24.1](https://npmdiff.dev/%40typescript-eslint%2Futils/8.24.1/8.25.0/)), which includes https://github.com/typescript-eslint/typescript-eslint/pull/10361, it has [set `"sourcemap": false`](https://github.com/typescript-eslint/typescript-eslint/pull/10361/files#diff-0b280a445be167f54cd916c0718c952b8e0d4ca9621903d05eec25efd4c6ed6dL17-R27) in the `tsconfig.json` so there's no more `.js.map` files being generated. So this issue...
Amazing repro and description! That makes sense to me. So we need to prepend the base here: https://github.com/bluwy/whyframe/blob/4c2f05f9841d18175163c4d19edce41414b065b7/packages/core/src/plugins/api.js#L84-L88 And I think we can borrow the base from the Vite config...