John Jenkins
John Jenkins
I believe, essentially, the use cases are outlined by [scoped custom element registries](https://github.com/WICG/webcomponents/blob/gh-pages/proposals/Scoped-Custom-Element-Registries.md) so if stencil can work with that proposal / polyfill then thatβd be an alternative / better...
I would like Stencil to remove (or at least deprecate in preparation for removal) a bunch / most of the [extras](https://stenciljs.com/docs/config-extras): - `experimentalSlotFixes` < rename to `scopedSlotFixes`. Encompasses all current...
> are we removing patches like `experimentalScopedSlotChanges` because there is no need for them anymore, because you have been fixing them or because experimentalSlotFixes contains all the fixes already? At...
> Is this something a common StencilJS user would do? My only concern is that opening up these hooks to users means we introduce interfaces that require maintenance and documentation...
More ideas :) - An experimental flag to enable `Rolldown` - An experimental flag to enable `typescript-go` - Removal of CJS bundles - Run-time decorators; make the current decorators *actual*...
> Component class extension: to add common props, states, methods, render method, or logic to multiple components @mamillastre check-out 4.37 π Stencil can now `extends`! Additionally, theres a new `Mixin`...
Hey all (not @sdvg < this doesn't help your request unfortunately) - I recently had to tackle this myself - here's a demo of my full solution, hopefully it's helpful...
Looks good - similar to everything Iβm doing here https://github.com/stenciljs/core/pull/6211 ^ thatβs very close to complete, the only issue Iβm having is the SSR / hydrate output getting muddled. I...
If I change the module name [here](https://github.com/webdriverio/webdriverio/blob/dc41a90e711d7b7a10e8129fb74650ad7a5956d0/packages/webdriverio/src/commands/browser/getPuppeteer.ts#L47) to be relative (`../../../puppeteer-core`) then it gets past that error .. but raises a new one :D ``` SyntaxError: The requested module '/node_modules/@wdio/browser-runner/build/browser/mock.js'...
last experiment :) I tried patching a bunch of mocks that were required from `mock.js`: ``` TimeoutError, CDP_WEBSOCKET_ENDPOINT_REGEX, WEBDRIVER_BIDI_WEBSOCKET_ENDPOINT_REGEX, launch, computeSystemExecutablePaths, computeSystemExecutablePath, ``` things get further - but still fails:...