David Khourshid
David Khourshid
Please be aware that these are not the official XState Dev Tools. I'm working on dev tools which should be released by the end of the month, and they will...
> > Please be aware that these are not the official XState Dev Tools. I'm working on dev tools which should be released by the end of the month, and...
> @davidkpiano is there any plans to reinstate this or is it getting phased out? thanks! This is **not** the official XState devtools extension, which does not exist yet. The...
This is a planned addition (re: adding types for `meta`), and I might make it so that `@xstate/test` version 1.0 would look more like: ```js const testModel = createModel({ //...
Before merging this in, let me think about naming... - `id` here should serve as only the **root state node ID** - The `id` (or `name`?) that the parent gives...
This isn't the most ideal workaround, but you can add a guard to the wildcard transition: ```js on: { "*": { target: "unexpected_event", cond: (_, e) => !e.type.startsWith("done.state") } },...
> I'm happy to try to do some debugging and put up a PR if you think it would be useful to fix in v4, but if not, no worries....
I still love the idea of this; what is needed to get it through?
Is this good to go?
> @davidkpiano Typegen has never been reliable for me, it can never cover all the userland requirements and sometimes it just doesn't work. > > Is there any other way...