joehua87

Results 4 comments of joehua87

I think tachoyns should be helpful in Sketch in combining with https://github.com/hrescak/Sketch-Flex-Layout @mrmrs How about your thinking?

I've just found out the problem is caused by `babel-plugin-dynamic-import-node` After removing it & make some small quick fix on rollup, it works perfectly ```js plugins: [ ..., replace({ [`var...

Ah, other issues for rollup are: * `(!!module).hot` (cannot be found in native node esm) ```js // Quick fix replace({ '(!!module).hot': 'false', delimiters: ['', ''], }), ``` * `global` cannot...

Hi, I can confirm that the following code works on `"@builder.io/qwik-city": "^1.5.2"`: ```ts import type { AttributifyAttributes } from 'unocss/preset-attributify' declare module '@builder.io/qwik' { interface HTMLAttributes extends AttributifyAttributes {} }...