Ryan Bower

Results 46 comments of Ryan Bower

> @R-Bower what is your build time like? We regularly had 15 min initial localhost builds on Mac _but_ instant on Linux Build time is very quick, but I'm only...

Hopefully this will be solved with https://nextjs.org/docs/advanced-features/turbopack, but we're still a while away from a production release.

Using pnpm. I'm seeing something slightly different, but related, in dev mode when I load the page: ``` Warning: You may have a dependency that could be inaccessible in production...

> @vjpr if you still need env-cmd try [muchobien/env-cmd](https://github.com/muchobien/env-cmd) is built with go so is much faster It's incomplete. Doesn't support all of the options that this library does. See:...

Definitely interested in this feature. I love this library but the lack of horizontal charts is disappointing!

You can use the `mutationObservables` property (add it to each step) to trigger the Mask to recompute its position. ``` // steps const steps = [ { selector: ".some-element", mutationObservables:...

> Two things to node: > > * We have made some big improvements to how we handle TS code recently. If you add `typescript: true` as an option for...

@samijaber this is immediately a problem with every event handler. ``` import {JSX} from "@builder.io/mitosis/jsx-runtime" export default function ButtonComponent( props: JSX.HTMLAttributes, ) { return ( {props.children} ) } ``` If...

Did some thinking on this... I've solved this, at least for the React output, by using a custom replacer post-compilation. All of my component's types are in a file matching...

@ianstormtaylor I'm also experiencing this. The issue seems to arise when using optional properties. ``` interface Pet { name: string owner?: string } interface Dog extends Pet { breed: string...