Brian Takita
Brian Takita
I'm not correctly following the verbiage of what needs to be done. Could you add a code section with a simple example? ```javascript const stream = require('stream') const { promisify...
Webpack or Rollup transpilation error - TypeError: Right-hand side of 'instanceof' is not an object
It looks like the name of the function attached to `ctor` param is stripped by the transpilation process & given `ctor` instead. The result is the error `TypeError: Right-hand side...
I was not able to find anything indicating that this library supports SSR or rendering strings. Is it feasible to have SSR support on stage0?
``` class CheapWatch extends EventEmitter { ^ TypeError: Class extends value [object Module] is not a constructor or null ``` This issue was addressed in the comments of https://github.com/Conduitry/cheap-watch/pull/4. I'm...
Does this library have an SSR output? If not, will there be in the future?
The build & tests pass with the added esm support. Followed the technique in https://redfin.engineering/node-modules-at-war-why-commonjs-and-es-modules-cant-get-along-9617135eeca1 Note this this will require a major version update as the `package.json` `"exports"` prop is...
An `on:` attribute, or something similar, would make it convenient to delegate all events from a component or html tag, ```html // All events on a are delegated through the...
### Check that this is really a bug - [X] I confirm ### Reproduction link https://github.com/btakita/wholly-trinity/tree/swiper-solid-issue ### Bug description The compiled solid-js component does not seem compatible with the current...
What license do you have for this project? MIT?
If a Component uses Typescript, the types should carry over into the markup. ```svelte interface Peach { color:'white'|'pink'|'brown' } export let peaches = [] as Peach[] {#each peaches as peach,idx}...