-
-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: v5 * breaking change from 18 and 19 * upgrade packages * update read me * update deps * 4.9.0-next.0 * 5.0.0-next.0 * 5.0.0-next.1 * change payload to object shape * remove option on should render * keep that skip render option * update readme
- Loading branch information
1 parent
b1cd266
commit af5ac1f
Showing
9 changed files
with
3,154 additions
and
3,291 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
# These are supported funding model platforms | ||
|
||
patreon: bluebill1049 | ||
github: [bluebill1049] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
"files": [ | ||
"dist" | ||
], | ||
"version": "4.8.1", | ||
"version": "5.0.0-next.1", | ||
"main": "dist/little-state-machine.js", | ||
"module": "dist/little-state-machine.es.js", | ||
"unpkg": "dist/little-state-machine.umd.js", | ||
|
@@ -28,19 +28,19 @@ | |
"author": "<[email protected]>", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@types/react": "^17.0.39", | ||
"@types/react": "^19.0.0", | ||
"jest": "27.5.0", | ||
"microbundle": "^0.15.1", | ||
"npm-run-all": "^4.1.5", | ||
"prettier": "^2.5.1", | ||
"react": "^17.0.2", | ||
"react-dom": "^17.0.2", | ||
"react": "^19.0.0", | ||
"react-dom": "^19.0.0", | ||
"rimraf": "^3.0.2", | ||
"semantic-release": "^19.0.2", | ||
"ts-jest": "^27.1.3", | ||
"typescript": "^4.5.5" | ||
}, | ||
"peerDependencies": { | ||
"react": "^16.8.0 || ^17 || ^18 || ^19" | ||
"react": "^18 || ^19" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
import { StateMachineProvider } from './StateMachineContext'; | ||
import { createStore, useStateMachine } from './stateMachine'; | ||
import { GlobalState } from './types'; | ||
|
||
export { createStore, StateMachineProvider, useStateMachine, GlobalState }; | ||
export { createStore, useStateMachine, GlobalState }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.