- Notifications
You must be signed in to change notification settings - Fork39
Migrate to xstate as app skeleton#2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes from1 commit
820097a
32edbcf
4be011f
6993147
04653e2
b51dd2f
89045a3
9bcf64c
cc176e6
e88651e
f8c527e
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
- Loading branch information
Uh oh!
There was an error while loading.Please reload this page.
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Todos | ||
- add to scripts when url fixed | ||
``` | ||
"postinstall": "node ./node_modules/vscode/bin/install", | ||
``` |
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export default {} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import basicTutorialData from './tutorials/basic' | ||
import * as CR from 'typings' | ||
const tutorialContext: CR.MachineContext = { | ||
position: { | ||
levelId: '', | ||
stageId: '', | ||
stepId: '', | ||
}, | ||
progress: { | ||
levels: {}, | ||
stages: {}, | ||
steps: {}, | ||
complete: false, | ||
}, | ||
// TODO: load tutorial instead of preloading demo | ||
data: basicTutorialData.data, | ||
} | ||
export default tutorialContext |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export default {} |
Uh oh!
There was an error while loading.Please reload this page.