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

Feature/update server#69

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

Merged
ShMcK merged 12 commits intomasterfromfeature/update-server
Jan 11, 2020
Merged
Show file tree
Hide file tree
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 15 additions & 3 deletions.vscode/settings.json
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -4,15 +4,27 @@
"source.organizeImports": true,
"source.fixAll": true
},
"eslint.validate": ["javascript", "javascriptreact", "typescript", "typescriptreact"],
"files.exclude": {
"build": false, // set this to true to hide the "out" folder with the compiled JS files
".vscode-test/**": true,
"*.vsix": true
},
// styles
"workbench.colorCustomizations": {
"activityBar.background": "#000000",
"activityBar.background": "#1a1a1a",
"activityBar.activeBorder": "#606020",
"activityBar.foreground": "#e7e7e7",
"activityBar.inactiveForeground": "#e7e7e799",
"activityBarBadge.background": "#606020",
"activityBarBadge.foreground": "#e7e7e7",
"titleBar.activeBackground": "#000000",
"titleBar.activeForeground": "#FFFFFF"
}
"titleBar.inactiveBackground": "#00000099",
"titleBar.activeForeground": "#e7e7e7",
"titleBar.inactiveForeground": "#e7e7e799",
"statusBar.background": "#000000",
"statusBarItem.hoverBackground": "#1a1a1a",
"statusBar.foreground": "#e7e7e7"
},
"peacock.color": "#000000"
}
76 changes: 38 additions & 38 deletionspackage-lock.json
View file
Open in desktop

Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.

18 changes: 9 additions & 9 deletionspackage.json
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -39,23 +39,23 @@
"@types/assert": "^1.4.3",
"@types/dotenv": "^8.2.0",
"@types/glob": "^7.1.1",
"@types/jest": "^24.0.23",
"@types/jest": "^24.0.25",
"@types/jsdom": "^12.2.4",
"@types/node": "^12.12.17",
"@typescript-eslint/eslint-plugin": "^2.11.0",
"@typescript-eslint/parser": "^2.11.0",
"@types/node": "^13.1.6",
"@typescript-eslint/eslint-plugin": "^2.15.0",
"@typescript-eslint/parser": "^2.15.0",
"assert": "^2.0.0",
"concurrently": "^5.0.1",
"dotenv": "^8.2.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"glob": "^7.1.6",
"graphql": "^14.5.8",
"mocha": "^6.2.2",
"prettier": "^1.19.1",
"ts-jest": "^24.2.0",
"typescript": "^3.7.3",
"ts-jest": "^24.3.0",
"typescript": "^3.7.4",
"vscode": "^1.1.36",
"vscode-test": "^1.3.0"
},
Expand Down
3 changes: 1 addition & 2 deletionssrc/actions/setupActions.ts
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
import * as T from 'typings'
import * as G from 'typings/graphql'
import * as vscode from 'vscode'
import * as git from '../services/git'
import loadWatchers from './utils/loadWatchers'
Expand All@@ -8,7 +7,7 @@ import runCommands from './utils/runCommands'

const setupActions = async (
workspaceRoot: vscode.WorkspaceFolder,
actions:G.StepActions,
actions:T.StepActions,
send: (action: T.Action) => void, // send messages to client
): Promise<void> => {
const { commands, commits, files, watchers } = actions
Expand Down
3 changes: 1 addition & 2 deletionssrc/actions/solutionActions.ts
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
import * as T from 'typings'
import * as G from 'typings/graphql'
import * as vscode from 'vscode'
import * as git from '../services/git'
import setupActions from './setupActions'

const solutionActions = async (
workspaceRoot: vscode.WorkspaceFolder,
stepActions:G.StepActions,
stepActions:T.StepActions,
send: (action: T.Action) => void,
): Promise<void> => {
await git.clear()
Expand Down
2 changes: 1 addition & 1 deletionsrc/actions/tutorialConfig.ts
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -6,7 +6,7 @@ import languageMap from '../editor/languageMap'
import * as git from '../services/git'

interface TutorialConfigParams {
config:G.TutorialConfig
config:T.TutorialConfig
alreadyConfigured?: boolean
onComplete?(): void
}
Expand Down
2 changes: 1 addition & 1 deletionsrc/channel/index.ts
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -96,7 +96,7 @@ class Channel implements Channel {
if (!tutorialContinue) {
throw new Error('Invalid tutorial to continue')
}
const continueConfig:G.TutorialConfig = tutorialContinue.version.data.config
const continueConfig:T.TutorialConfig = tutorialContinue.version.data.config
tutorialConfig(
{
config: continueConfig,
Expand Down
4 changes: 2 additions & 2 deletionssrc/editor/commands.ts
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
import * asG from 'typings/graphql'
import * asT from 'typings'
import * as vscode from 'vscode'
import createTestRunner, { Payload } from '../services/testRunner'
import createWebView from '../webview'
Expand DownExpand Up@@ -52,7 +52,7 @@ export const createCommands = ({ extensionPath, workspaceState, workspaceRoot }:
// setup 1x1 horizontal layout
webview.createOrShow()
},
[COMMANDS.CONFIG_TEST_RUNNER]: (config:G.TutorialTestRunner) => {
[COMMANDS.CONFIG_TEST_RUNNER]: (config:T.TutorialTestRunner) => {
testRunner = createTestRunner(config, {
onSuccess: (payload: Payload) => {
// send test pass message back to client
Expand Down
Loading

[8]ページ先頭

©2009-2025 Movatter.jp