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

Commit697fd53

Browse files
committed
prepare v0.14.2
Signed-off-by: shmck <shawn.j.mckay@gmail.com>
1 parent3e0aec7 commit697fd53

File tree

8 files changed

+202
-296
lines changed

8 files changed

+202
-296
lines changed

‎package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name":"coderoad",
3-
"version":"0.14.1",
3+
"version":"0.14.2",
44
"description":"Play interactive coding tutorials in your editor",
55
"keywords": [
66
"tutorial",
@@ -34,6 +34,7 @@
3434
"watch":"tsc -watch -p ./"
3535
},
3636
"dependencies": {
37+
"@types/events":"^3.0.0",
3738
"chokidar":"^3.4.2",
3839
"dotenv":"^8.2.0",
3940
"eslint":"^7.8.1",

‎scripts/build.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/bin/bash
22

33
echo"Building Extension..."
4+
tsc -v
45

56
# remove build directory
67
echo"Cleaning up previous build..."

‎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.1.0
2+
VERSION=0.14.2
33
NODE_ENV=local
44
REACT_APP_DEBUG=false
55
REACT_APP_LOG=false

‎web-app/package.json

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name":"coderoad-app",
3-
"version":"0.14.1",
3+
"version":"0.14.2",
44
"private":true,
55
"scripts": {
66
"build":"react-app-rewired build",
@@ -28,12 +28,13 @@
2828
"@alifd/next":"^1.20.28",
2929
"@emotion/babel-preset-css-prop":"^10.0.27",
3030
"@emotion/core":"^10.0.35",
31+
"@xstate/react":"^1.0.1",
3132
"babel-jest":"^26.3.0",
3233
"emotion-theming":"^10.0.27",
3334
"js-yaml":"^3.14.0",
34-
"markdown-it":"^11.0.0",
35+
"markdown-it":"^11.0.1",
3536
"markdown-it-emoji":"^1.4.0",
36-
"moment":"^2.27.0",
37+
"moment":"^2.29.0",
3738
"prismjs":"^1.21.0",
3839
"react":"^16.13.1",
3940
"react-addons-css-transition-group":"^15.6.2",
@@ -44,31 +45,31 @@
4445
},
4546
"devDependencies": {
4647
"@babel/core":"^7.11.6",
47-
"@storybook/addon-actions":"^6.0.21",
48-
"@storybook/addon-knobs":"^6.0.21",
49-
"@storybook/addon-links":"^6.0.21",
50-
"@storybook/addons":"^6.0.21",
48+
"@storybook/addon-actions":"^6.0.22",
49+
"@storybook/addon-knobs":"^6.0.22",
50+
"@storybook/addon-links":"^6.0.22",
51+
"@storybook/addons":"^6.0.22",
5152
"@storybook/preset-create-react-app":"^3.1.4",
52-
"@storybook/react":"^6.0.21",
53+
"@storybook/react":"^6.0.22",
5354
"@types/graphql":"^14.5.0",
5455
"@types/highlight.js":"^9.12.4",
55-
"@types/jest":"^26.0.13",
56+
"@types/jest":"^26.0.14",
5657
"@types/js-yaml":"^3.12.5",
5758
"@types/markdown-it":"^10.0.2",
58-
"@types/node":"^14.6.4",
59+
"@types/node":"^14.11.2",
5960
"@types/prismjs":"^1.16.1",
6061
"@types/react":"^16.9.49",
6162
"@types/react-addons-css-transition-group":"^15.0.5",
6263
"@types/react-dom":"^16.9.8",
6364
"babel-loader":"8.1.0",
6465
"babel-plugin-import":"^1.13.0",
6566
"customize-cra":"^1.0.0",
66-
"mini-css-extract-plugin":"^0.11.1",
67+
"mini-css-extract-plugin":"^0.11.2",
6768
"node-sass":"^4.14.1",
68-
"prettier":"^2.1.1",
69+
"prettier":"^2.1.2",
6970
"react-app-rewired":"^2.1.6",
7071
"react-scripts":"^3.4.3",
7172
"sass-loader":"^8.0.2",
72-
"typescript":"^4.0.2"
73+
"typescript":"^4.0.3"
7374
}
7475
}

‎web-app/src/services/state/useStateMachine.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import*asReactfrom'react'
2-
import*asTfrom'typings'
2+
import*asTfrom'typings'// eslint-disable-line
3+
import{useMachine}from'@xstate/react'
34
import{createMachine}from'./machine'
4-
import{useMachine}from'../xstate-react'
55
importcreateRouteStringfrom'./utils/routeString'
66
importloggerfrom'../logger'
77

@@ -45,7 +45,7 @@ const useStateMachine = (): Output => {
4545
return()=>{
4646
window.removeEventListener(listener,handler)
4747
}
48-
},[])
48+
},[])// eslint-disable-line
4949

5050
// convert route to a string to avoid unnecessary React re-renders on deeply nested objects
5151
constroute=createRouteString(state.value)

‎web-app/src/services/xstate-react/index.ts

Lines changed: 0 additions & 117 deletions
This file was deleted.

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp