xstate-codegen
                                
                                
                                
                                    xstate-codegen copied to clipboard
                            
                            
                            
                        A codegen tool for 100% TS type-safety in XState
Bumps [striptags](https://github.com/ericnorris/striptags) from 3.1.1 to 3.2.0. Release notes Sourced from striptags's releases. v3.2.0 This release fixes a potential type confusion vulnerability when passing in a non-string argument to the function....
Fixes an issue whereby a space in the key name for an action, activity, guard, or service causes a failure. We do this by wrapping the name of those items...
Bumps [glob-parent](https://github.com/gulpjs/glob-parent) from 5.1.1 to 5.1.2. Release notes Sourced from glob-parent's releases. v5.1.2 Bug Fixes eliminate ReDoS (#36) (f923116) Changelog Sourced from glob-parent's changelog. 5.1.2 (2021-03-06) Bug Fixes eliminate ReDoS...
Bumps [normalize-url](https://github.com/sindresorhus/normalize-url) from 4.5.0 to 4.5.1. Commits See full diff in compare view [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...
I'm trying this out on a new project (which means I'm making lots of mistakes), and in watch mode, xstate-codegen appears to crash and exit on any error, instead of...
Bumps [hosted-git-info](https://github.com/npm/hosted-git-info) from 2.8.8 to 2.8.9. Changelog Sourced from hosted-git-info's changelog. 2.8.9 (2021-04-07) Bug Fixes backport regex fix from #76 (29adfe5), closes #84 Commits 8d4b369 chore(release): 2.8.9 29adfe5 fix: backport...
Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.21. Commits f299b52 Bump to v4.17.21 c4847eb Improve performance of toNumber, trim and trimEnd on large input strings 3469357 Prevent command injection through _.template's variable...
Bumps [handlebars](https://github.com/wycats/handlebars.js) from 4.7.6 to 4.7.7. Changelog Sourced from handlebars's changelog. v4.7.7 - February 15th, 2021 fix weird error in integration tests - eb860c0 fix: check prototype property access in...
Following the Reddit tutorial, [there's a section that demonstrates splitting machines](https://xstate.js.org/docs/tutorials/reddit.html#splitting-machines). In that section, they create a factory that creates a machine given a subreddit name. This is my translation...
When I only have one machine ts file like below, ```ts // switch.machine.ts import { Machine } from "@xstate/compiled" interface Context {} type Event = { type: "toggle" } export...