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

Commit76aadee

Browse files
authored
Merge pull request#69 from ShMcK/feature/update-server
Feature/update server
2 parents4701273 +dbdf867 commit76aadee

File tree

22 files changed

+644
-693
lines changed

22 files changed

+644
-693
lines changed

‎.vscode/settings.json

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,27 @@
44
"source.organizeImports":true,
55
"source.fixAll":true
66
},
7+
"eslint.validate": ["javascript","javascriptreact","typescript","typescriptreact"],
78
"files.exclude": {
89
"build":false,// set this to true to hide the "out" folder with the compiled JS files
910
".vscode-test/**":true,
1011
"*.vsix":true
1112
},
1213
// styles
1314
"workbench.colorCustomizations": {
14-
"activityBar.background":"#000000",
15+
"activityBar.background":"#1a1a1a",
16+
"activityBar.activeBorder":"#606020",
17+
"activityBar.foreground":"#e7e7e7",
18+
"activityBar.inactiveForeground":"#e7e7e799",
19+
"activityBarBadge.background":"#606020",
20+
"activityBarBadge.foreground":"#e7e7e7",
1521
"titleBar.activeBackground":"#000000",
16-
"titleBar.activeForeground":"#FFFFFF"
17-
}
22+
"titleBar.inactiveBackground":"#00000099",
23+
"titleBar.activeForeground":"#e7e7e7",
24+
"titleBar.inactiveForeground":"#e7e7e799",
25+
"statusBar.background":"#000000",
26+
"statusBarItem.hoverBackground":"#1a1a1a",
27+
"statusBar.foreground":"#e7e7e7"
28+
},
29+
"peacock.color":"#000000"
1830
}

‎package-lock.json

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

‎package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -39,23 +39,23 @@
3939
"@types/assert":"^1.4.3",
4040
"@types/dotenv":"^8.2.0",
4141
"@types/glob":"^7.1.1",
42-
"@types/jest":"^24.0.23",
42+
"@types/jest":"^24.0.25",
4343
"@types/jsdom":"^12.2.4",
44-
"@types/node":"^12.12.17",
45-
"@typescript-eslint/eslint-plugin":"^2.11.0",
46-
"@typescript-eslint/parser":"^2.11.0",
44+
"@types/node":"^13.1.6",
45+
"@typescript-eslint/eslint-plugin":"^2.15.0",
46+
"@typescript-eslint/parser":"^2.15.0",
4747
"assert":"^2.0.0",
4848
"concurrently":"^5.0.1",
4949
"dotenv":"^8.2.0",
50-
"eslint":"^6.7.2",
51-
"eslint-config-prettier":"^6.7.0",
52-
"eslint-plugin-prettier":"^3.1.1",
50+
"eslint":"^6.8.0",
51+
"eslint-config-prettier":"^6.9.0",
52+
"eslint-plugin-prettier":"^3.1.2",
5353
"glob":"^7.1.6",
5454
"graphql":"^14.5.8",
5555
"mocha":"^6.2.2",
5656
"prettier":"^1.19.1",
57-
"ts-jest":"^24.2.0",
58-
"typescript":"^3.7.3",
57+
"ts-jest":"^24.3.0",
58+
"typescript":"^3.7.4",
5959
"vscode":"^1.1.36",
6060
"vscode-test":"^1.3.0"
6161
},

‎src/actions/setupActions.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import*asTfrom'typings'
2-
import*asGfrom'typings/graphql'
32
import*asvscodefrom'vscode'
43
import*asgitfrom'../services/git'
54
importloadWatchersfrom'./utils/loadWatchers'
@@ -8,7 +7,7 @@ import runCommands from './utils/runCommands'
87

98
constsetupActions=async(
109
workspaceRoot:vscode.WorkspaceFolder,
11-
actions:G.StepActions,
10+
actions:T.StepActions,
1211
send:(action:T.Action)=>void,// send messages to client
1312
):Promise<void>=>{
1413
const{ commands, commits, files, watchers}=actions

‎src/actions/solutionActions.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
import*asTfrom'typings'
2-
import*asGfrom'typings/graphql'
32
import*asvscodefrom'vscode'
43
import*asgitfrom'../services/git'
54
importsetupActionsfrom'./setupActions'
65

76
constsolutionActions=async(
87
workspaceRoot:vscode.WorkspaceFolder,
9-
stepActions:G.StepActions,
8+
stepActions:T.StepActions,
109
send:(action:T.Action)=>void,
1110
):Promise<void>=>{
1211
awaitgit.clear()

‎src/actions/tutorialConfig.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import languageMap from '../editor/languageMap'
66
import*asgitfrom'../services/git'
77

88
interfaceTutorialConfigParams{
9-
config:G.TutorialConfig
9+
config:T.TutorialConfig
1010
alreadyConfigured?:boolean
1111
onComplete?():void
1212
}

‎src/channel/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ class Channel implements Channel {
9696
if(!tutorialContinue){
9797
thrownewError('Invalid tutorial to continue')
9898
}
99-
constcontinueConfig:G.TutorialConfig=tutorialContinue.version.data.config
99+
constcontinueConfig:T.TutorialConfig=tutorialContinue.version.data.config
100100
tutorialConfig(
101101
{
102102
config:continueConfig,

‎src/editor/commands.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import*asGfrom'typings/graphql'
1+
import*asTfrom'typings'
22
import*asvscodefrom'vscode'
33
importcreateTestRunner,{Payload}from'../services/testRunner'
44
importcreateWebViewfrom'../webview'
@@ -52,7 +52,7 @@ export const createCommands = ({ extensionPath, workspaceState, workspaceRoot }:
5252
// setup 1x1 horizontal layout
5353
webview.createOrShow()
5454
},
55-
[COMMANDS.CONFIG_TEST_RUNNER]:(config:G.TutorialTestRunner)=>{
55+
[COMMANDS.CONFIG_TEST_RUNNER]:(config:T.TutorialTestRunner)=>{
5656
testRunner=createTestRunner(config,{
5757
onSuccess:(payload:Payload)=>{
5858
// send test pass message back to client

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp