Joe Pea
Joe Pea
I took Nitro 2.9.7 for a spin, looks like it supports top-level await out of the box.
I forced nitropack version 2.9.7 in the Solid Start app, but I still get the same top-level await error for yoga-layout when running `npm run dev`.
The fix in - https://github.com/ryansolid/dom-expressions/pull/345 got rid of the need to use `await import()` for the `lume` package, cleaning up imports in several modules. However the issue of `node_modules` not...
The `await import('https://unpkg.com/[email protected]/dist/src/index.js')` with an actual URL causes the build to avoid transforming the `import()` expression, so the app will import from unpkg.com in the browser.
Is it confirmed this is fixed in Nitro v2? Or do we need to make an issue? Its almost 2025, hard to believe top-level await is not supported when all...
Looks like Playwright has experimental support for automating Electron! https://playwright.dev/docs/api/class-electron This will be the easy way to add Electron support!
Looking at the code, it looks like for the most part we just need to update the `product` list, https://github.com/modernweb-dev/web/blob/aadcbea59e3cf929cc0ab41775b66f866d5a9dcc/packages/test-runner-playwright/src/PlaywrightLauncher.ts#L9 https://github.com/modernweb-dev/web/blob/aadcbea59e3cf929cc0ab41775b66f866d5a9dcc/packages/test-runner-playwright/src/index.ts#L10 with one caveat: the `electron` launcher is under `playwrite._electron`...
Alright, here's a starting point: - https://github.com/modernweb-dev/web/pull/2818 It manages to run the Electron window non-headlessly, but then it seems to not run any tests. It might have to do with...
I imagine many people just want the `popstate` events to fire as expected above, especially in single-page applications. I don't think this API needs to be completely polyfilled to be...
We no longer need to use a 3rd party for this because we have since made all examples capable of being served statically, right from GitHub. We commit our TS-to-JS...