Skip to content

Commit 4701273

Browse files
authoredJan 10, 2020
Merge pull request #64 from ShMcK/feature/update-api-changes
Feature/update api changes
·
v0.19.40.2.0
2 parents 68e0dd5 + 21ecc86 commit 4701273

File tree

9 files changed

+701
-585
lines changed

9 files changed

+701
-585
lines changed
 

‎package-lock.json

Lines changed: 26 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -32,35 +32,35 @@
3232
},
3333
"dependencies": {
3434
"@types/chokidar": "^2.1.3",
35-
"chokidar": "^3.3.1",
35+
"chokidar": "^3.3.0",
3636
"jsdom": "^15.2.1"
3737
},
3838
"devDependencies": {
3939
"@types/assert": "^1.4.3",
4040
"@types/dotenv": "^8.2.0",
4141
"@types/glob": "^7.1.1",
42-
"@types/jest": "^24.0.24",
42+
"@types/jest": "^24.0.23",
4343
"@types/jsdom": "^12.2.4",
44-
"@types/node": "^13.1.0",
45-
"@typescript-eslint/eslint-plugin": "^2.13.0",
46-
"@typescript-eslint/parser": "^2.13.0",
44+
"@types/node": "^12.12.17",
45+
"@typescript-eslint/eslint-plugin": "^2.11.0",
46+
"@typescript-eslint/parser": "^2.11.0",
4747
"assert": "^2.0.0",
48-
"concurrently": "^5.0.2",
48+
"concurrently": "^5.0.1",
4949
"dotenv": "^8.2.0",
50-
"eslint": "^6.8.0",
50+
"eslint": "^6.7.2",
5151
"eslint-config-prettier": "^6.7.0",
52-
"eslint-plugin-prettier": "^3.1.2",
52+
"eslint-plugin-prettier": "^3.1.1",
5353
"glob": "^7.1.6",
5454
"graphql": "^14.5.8",
5555
"mocha": "^6.2.2",
5656
"prettier": "^1.19.1",
5757
"ts-jest": "^24.2.0",
58-
"typescript": "^3.7.4",
58+
"typescript": "^3.7.3",
5959
"vscode": "^1.1.36",
6060
"vscode-test": "^1.3.0"
6161
},
6262
"engines": {
63-
"vscode": "^1.41.1"
63+
"vscode": "^1.40.0"
6464
},
6565
"activationEvents": [
6666
"onCommand:coderoad.start"

‎src/channel/index.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -88,14 +88,6 @@ class Channel implements Channel {
8888

8989
await tutorialConfig({ config: data.config }, onError)
9090

91-
// run init setup actions
92-
if (data.init) {
93-
const setup: G.StepActions | null | undefined = data.init.setup
94-
if (setup) {
95-
setupActions(this.workspaceRoot, setup, this.send)
96-
}
97-
}
98-
9991
// report back to the webview that setup is complete
10092
this.send({ type: 'TUTORIAL_CONFIGURED' })
10193
return

‎typings/graphql.d.ts

Lines changed: 518 additions & 454 deletions
Large diffs are not rendered by default.

‎web-app/package-lock.json

Lines changed: 137 additions & 76 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎web-app/package.json

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"react": "^16.12.0",
4040
"react-dom": "^16.12.0",
4141
"reselect": "^4.0.0",
42-
"typescript": "^3.7.4",
42+
"typescript": "^3.7.3",
4343
"xstate": "^4.7.3"
4444
},
4545
"devDependencies": {
@@ -53,12 +53,11 @@
5353
"@types/highlight.js": "^9.12.3",
5454
"@types/jest": "^24.0.24",
5555
"@types/markdown-it": "0.0.9",
56-
"@types/node": "^13.1.0",
57-
"@types/prismjs": "^1.16.0",
58-
"@types/react": "^16.9.17",
56+
"@types/node": "^12.12.17",
57+
"@types/react": "^16.9.16",
5958
"@types/react-dom": "^16.9.4",
60-
"@typescript-eslint/eslint-plugin": "^2.13.0",
61-
"@typescript-eslint/parser": "^2.13.0",
59+
"@typescript-eslint/eslint-plugin": "^2.11.0",
60+
"@typescript-eslint/parser": "^2.11.0",
6261
"babel-loader": "8.0.5",
6362
"babel-plugin-import": "^1.12.1",
6463
"eslint": "^6.8.0",

‎web-app/src/containers/Continue/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ export const ContinuePage = (props: Props) => (
3131
</div>
3232
<Card>
3333
<div>
34-
<h2>{props.tutorial.version.summary.title}</h2>
35-
<p>{props.tutorial.version.summary.description}</p>
34+
<h2>{props.tutorial.summary.title}</h2>
35+
<p>{props.tutorial.summary.description}</p>
3636
<Button onClick={props.onContinue}>Resume</Button>
3737
</div>
3838
</Card>

‎web-app/src/containers/New/TutorialList/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ const TutorialList = (props: Props) => {
2222
<TutorialItem
2323
key={tutorial.id}
2424
onSelect={() => onSelect(tutorial)}
25-
title={tutorial.version.summary.title || ''}
26-
description={tutorial.version.summary.description || ''}
25+
title={tutorial.summary.title || ''}
26+
description={tutorial.summary.description || ''}
2727
/>
2828
))}
2929
</div>

‎web-app/src/containers/Overview/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ const Overview = (props: PageProps) => {
5454
},
5555
})
5656

57-
const { title, description } = data.tutorial.version.summary
57+
const { title, description } = data.tutorial.summary
5858
const { levels } = data.tutorial.version.data
5959

6060
return <OverviewPage title={title} description={description} levels={levels} onNext={onNext} />

0 commit comments

Comments
 (0)
Please sign in to comment.