Christian Ulbrich

Results 29 comments of Christian Ulbrich

@pmorjan The dep graph is misleading, because the package.json does *not* specify the devDependencies as devDependencies and thus `jasmine-node`, `jshint` and `websocket` which are only required for _testing_, account for...

Jap, looks like, someone fixed this 4.5 year old issue, 3 years ago. :) @jxcheng008 Would you plz. close this issue then?

To whom it may concern. You can monkey-patch the CustomElements registry. I have created a [verrrry rough prototype](https://github.com/zalari/custom-elements-loader-prototype), allowing to register as many classes as you want for the **same**...

How about some _prior art_? StencilJS has for the same reasons an `@Event` [decorator](https://stenciljs.com/docs/events#event-decorator). Although they just use it for _tagging_ (and then doing their ub3r-cust0m TypeScript transform magic): _borrowing_:...

@landrito The idea of overwriting the type signature of `this.dispatchEvent` and thus making it type-safe is _intriguing_. However, there are several drawbacks to this approach: * messing around with `LitElement`...

@quadristan You are right, the problem is, that `pnpm -r` will run in _concurrency_ (currently _4_ processes); I simply call `lint-staged` now with `pnpm -r --workspace-concurrency=1 lint-staged` and everything works...

Initial install using `yarn` seems to be broken right now. If you swap `yarn install --silent` with `npm install` everything should work. This has for sure something to do with...

@pvdlg Ping, is there anything not clear? This is breaking our build currently and while using the fix directly is really easy (because all plugins are old-school w/o any bundling...

@travi BUMP. This is still a problem... Luckily the one year old fix, still happily merges. :)

WTR currently is meant to let tests run **in** the browser. To a certain extent Playwright APIs can be utilized via the usage of dedicated [commands](https://modern-web.dev/docs/test-runner/commands/), such as [sendKeys](https://modern-web.dev/docs/test-runner/commands/#send-keys) which...