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

Commit1599b1c

Browse files
committed
add extension recommendations
1 parent53397fa commit1599b1c

File tree

2 files changed

+88
-90
lines changed

2 files changed

+88
-90
lines changed

‎.vscode/extensions.json

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
{
2-
// See http://go.microsoft.com/fwlink/?LinkId=827846
3-
// for the documentation about the extensions.json format
4-
"recommendations": [
5-
"ms-vscode.vscode-typescript-tslint-plugin"
6-
]
7-
}
2+
// See http://go.microsoft.com/fwlink/?LinkId=827846
3+
// for the documentation about the extensions.json format
4+
"recommendations": ["dbaeumer.vscode-eslint","apollographql.vscode-apollo"]
5+
}

‎package.json

Lines changed: 84 additions & 84 deletions
Original file line numberDiff line numberDiff line change
@@ -1,86 +1,86 @@
11
{
2-
"name":"coderoad",
3-
"version":"0.1.0",
4-
"description":"Interactive tutorials in your editor",
5-
"homepage":"https://github.com/shmck/coderoad-vscode/README.md",
6-
"bugs": {
7-
"url":"https://github.com/shmck/coderoad-vscode/issues",
8-
"email":"shawn.j.mckay@gmail.com"
9-
},
10-
"repository": {
11-
"type":"git",
12-
"url":"https://github.com/shmck/coderoad-vscode.git"
13-
},
14-
"license":"SEE LICENSE IN LICENSE.md",
15-
"author": {
16-
"name":"Shawn McKay <shawn.j.mckay@gmail.com>"
17-
},
18-
"main":"./build/extension.js",
19-
"scripts": {
20-
"build":"rm -rf build && concurrently\"npm run build:ext\"\"npm run build:web\"",
21-
"build:ext":"npm run compile",
22-
"build:web":"cd web-app && npm run build",
23-
"compile":"tsc -p ./",
24-
"postinstall":"node ./node_modules/vscode/bin/install",
25-
"lint":"eslint src/**/*ts",
26-
"machine":"node ./out/state/index.js",
27-
"storybook":"cd web-app && npm run storybook",
28-
"test":"jest",
29-
"test:ext":"node ./build/test/runTest.js",
30-
"vscode:prepublish":"npm run build",
31-
"watch":"tsc -watch -p ./"
32-
},
33-
"dependencies": {
34-
"@types/chokidar":"^2.1.3",
35-
"chokidar":"^3.3.1",
36-
"jsdom":"^15.2.1"
37-
},
38-
"devDependencies": {
39-
"@types/assert":"^1.4.3",
40-
"@types/dotenv":"^8.2.0",
41-
"@types/glob":"^7.1.1",
42-
"@types/jest":"^24.0.24",
43-
"@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",
47-
"assert":"^2.0.0",
48-
"concurrently":"^5.0.2",
49-
"dotenv":"^8.2.0",
50-
"eslint":"^6.8.0",
51-
"eslint-config-prettier":"^6.7.0",
52-
"eslint-plugin-prettier":"^3.1.2",
53-
"glob":"^7.1.6",
54-
"graphql":"^14.5.8",
55-
"mocha":"^6.2.2",
56-
"prettier":"^1.19.1",
57-
"ts-jest":"^24.2.0",
58-
"typescript":"^3.7.4",
59-
"vscode":"^1.1.36",
60-
"vscode-test":"^1.3.0"
61-
},
62-
"engines": {
63-
"vscode":"^1.40.0"
64-
},
65-
"activationEvents": [
66-
"onCommand:coderoad.start"
67-
],
68-
"categories": [
69-
"Other"
70-
],
71-
"contributes": {
72-
"commands": [
73-
{
74-
"command":"coderoad.start",
75-
"title":"Start",
76-
"category":"CodeRoad"
77-
}
78-
]
79-
},
80-
"displayName":"CodeRoad",
81-
"galleryBanner": {
82-
"color":"#C80000",
83-
"theme":"dark"
84-
},
85-
"publisher":"CodeRoad"
2+
"name":"coderoad",
3+
"version":"0.1.0",
4+
"description":"Interactive tutorials in your editor",
5+
"homepage":"https://github.com/shmck/coderoad-vscode/README.md",
6+
"bugs": {
7+
"url":"https://github.com/shmck/coderoad-vscode/issues",
8+
"email":"shawn.j.mckay@gmail.com"
9+
},
10+
"repository": {
11+
"type":"git",
12+
"url":"https://github.com/shmck/coderoad-vscode.git"
13+
},
14+
"license":"SEE LICENSE IN LICENSE.md",
15+
"author": {
16+
"name":"Shawn McKay <shawn.j.mckay@gmail.com>"
17+
},
18+
"main":"./build/extension.js",
19+
"scripts": {
20+
"build":"rm -rf build && concurrently\"npm run build:ext\"\"npm run build:web\"",
21+
"build:ext":"npm run compile",
22+
"build:web":"cd web-app && npm run build",
23+
"compile":"tsc -p ./",
24+
"postinstall":"node ./node_modules/vscode/bin/install",
25+
"lint":"eslint src/**/*ts",
26+
"machine":"node ./out/state/index.js",
27+
"storybook":"cd web-app && npm run storybook",
28+
"test":"jest",
29+
"test:ext":"node ./build/test/runTest.js",
30+
"vscode:prepublish":"npm run build",
31+
"watch":"tsc -watch -p ./"
32+
},
33+
"dependencies": {
34+
"@types/chokidar":"^2.1.3",
35+
"chokidar":"^3.3.1",
36+
"jsdom":"^15.2.1"
37+
},
38+
"devDependencies": {
39+
"@types/assert":"^1.4.3",
40+
"@types/dotenv":"^8.2.0",
41+
"@types/glob":"^7.1.1",
42+
"@types/jest":"^24.0.24",
43+
"@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",
47+
"assert":"^2.0.0",
48+
"concurrently":"^5.0.2",
49+
"dotenv":"^8.2.0",
50+
"eslint":"^6.8.0",
51+
"eslint-config-prettier":"^6.7.0",
52+
"eslint-plugin-prettier":"^3.1.2",
53+
"glob":"^7.1.6",
54+
"graphql":"^14.5.8",
55+
"mocha":"^6.2.2",
56+
"prettier":"^1.19.1",
57+
"ts-jest":"^24.2.0",
58+
"typescript":"^3.7.4",
59+
"vscode":"^1.1.36",
60+
"vscode-test":"^1.3.0"
61+
},
62+
"engines": {
63+
"vscode":"^1.41.1"
64+
},
65+
"activationEvents": [
66+
"onCommand:coderoad.start"
67+
],
68+
"categories": [
69+
"Other"
70+
],
71+
"contributes": {
72+
"commands": [
73+
{
74+
"command":"coderoad.start",
75+
"title":"Start",
76+
"category":"CodeRoad"
77+
}
78+
]
79+
},
80+
"displayName":"CodeRoad",
81+
"galleryBanner": {
82+
"color":"#C80000",
83+
"theme":"dark"
84+
},
85+
"publisher":"CodeRoad"
8686
}

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp