Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit32337f6

Browse files
authored
Merge pull request#519 from coderoad/release/v0.15
prepare v0.15 release
2 parentsce2534c +6a6a400 commit32337f6

File tree

5 files changed

+12
-24
lines changed

5 files changed

+12
-24
lines changed

‎package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name":"coderoad",
3-
"version":"0.14.5",
3+
"version":"0.15.0",
44
"description":"Play interactive coding tutorials in your editor",
55
"keywords": [
66
"tutorial",

‎src/services/hooks/webhooks.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -76,26 +76,26 @@ export const onReset = (event: WebhookEventReset): void => {
7676
}
7777
}
7878

79-
typeWebhookEventStepComplete={tutorialId:string;version:string;levelId:string;stepId:string}
79+
typeWebhookEventStepComplete={tutorialId:string;version?:string;levelId:string;stepId:string}
8080

8181
exportconstonStepComplete=(event:WebhookEventStepComplete):void=>{
8282
if(WEBHOOK_EVENTS.step_complete){
8383
callWebhookEndpoint<WebhookEventStepComplete>(event)
8484
}
8585
}
8686

87-
typeWebhookEventLevelComplete={tutorialId:string;version:string;levelId:string}
87+
typeWebhookEventLevelComplete={tutorialId:string;version?:string;levelId:string}
8888

8989
exportconstonLevelComplete=(event:WebhookEventLevelComplete):void=>{
9090
if(WEBHOOK_EVENTS.level_complete){
9191
callWebhookEndpoint<WebhookEventLevelComplete>(event)
9292
}
9393
}
9494

95-
typeWebhookEevntTutorialComplete={tutorialId:string;version:string}
95+
typeWebhookEventTutorialComplete={tutorialId:string;version?:string}
9696

97-
exportconstonTutorialComplete=(event:WebhookEevntTutorialComplete):void=>{
97+
exportconstonTutorialComplete=(event:WebhookEventTutorialComplete):void=>{
9898
if(WEBHOOK_EVENTS.tutorial_complete){
99-
callWebhookEndpoint<WebhookEevntTutorialComplete>(event)
99+
callWebhookEndpoint<WebhookEventTutorialComplete>(event)
100100
}
101101
}

‎web-app/.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
SKIP_PREFLIGHT_CHECK=true
2-
VERSION=0.14.5
2+
VERSION=0.15.0
33
NODE_ENV=local
44
REACT_APP_DEBUG=false
55
REACT_APP_LOG=false

‎web-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name":"coderoad-app",
3-
"version":"0.14.5",
3+
"version":"0.15.0",
44
"private":true,
55
"scripts": {
66
"build":"react-app-rewired build",

‎web-app/yarn.lock

Lines changed: 4 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2425,10 +2425,10 @@
24252425
"@emotion/utils" "0.11.3"
24262426
"@emotion/weak-memoize" "0.2.5"
24272427

2428-
"@emotion/core@10.0.35":
2429-
version "10.0.35"
2430-
resolved "https://registry.yarnpkg.com/@emotion/core/-/core-10.0.35.tgz#513fcf2e22cd4dfe9d3894ed138c9d7a859af9b3"
2431-
integrity sha512-sH++vJCdk025fBlRZSAhkRlSUoqSqgCzYf5fMOmqqi3bM6how+sQpg3hkgJonj8GxXM4WbD7dRO+4tegDB9fUw==
2428+
"@emotion/core@^10.0.35", "@emotion/core@^10.1.1":
2429+
version "10.1.1"
2430+
resolved "https://registry.yarnpkg.com/@emotion/core/-/core-10.1.1.tgz#c956c1365f2f2481960064bcb8c4732e5fb612c3"
2431+
integrity sha512-ZMLG6qpXR8x031NXD8HJqugy/AZSkAuMxxqB46pmAR7ze47MhNJ56cdoX243QPZdGctrdfo+s08yZTiwaUcRKA==
24322432
dependencies:
24332433
"@babel/runtime" "^7.5.5"
24342434
"@emotion/cache" "^10.0.27"
@@ -2449,18 +2449,6 @@
24492449
"@emotion/sheet" "0.9.4"
24502450
"@emotion/utils" "0.11.3"
24512451

2452-
"@emotion/core@^10.1.1":
2453-
version "10.1.1"
2454-
resolved "https://registry.yarnpkg.com/@emotion/core/-/core-10.1.1.tgz#c956c1365f2f2481960064bcb8c4732e5fb612c3"
2455-
integrity sha512-ZMLG6qpXR8x031NXD8HJqugy/AZSkAuMxxqB46pmAR7ze47MhNJ56cdoX243QPZdGctrdfo+s08yZTiwaUcRKA==
2456-
dependencies:
2457-
"@babel/runtime" "^7.5.5"
2458-
"@emotion/cache" "^10.0.27"
2459-
"@emotion/css" "^10.0.27"
2460-
"@emotion/serialize" "^0.11.15"
2461-
"@emotion/sheet" "0.9.4"
2462-
"@emotion/utils" "0.11.3"
2463-
24642452
"@emotion/css@^10.0.27", "@emotion/css@^10.0.9":
24652453
version "10.0.27"
24662454
resolved "https://registry.yarnpkg.com/@emotion/css/-/css-10.0.27.tgz#3a7458198fbbebb53b01b2b87f64e5e21241e14c"

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp