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

Commitdf56808

Browse files
authored
Merge pull requestcoderoad#13 from ShMcK/feature/markdown
Feature/markdown
2 parents9d0c783 +924efe8 commitdf56808

File tree

17 files changed

+4431
-4012
lines changed

17 files changed

+4431
-4012
lines changed

‎package.json

Lines changed: 71 additions & 71 deletions
Original file line numberDiff line numberDiff line change
@@ -1,73 +1,73 @@
11
{
2-
"name":"coderoad-vscode",
3-
"displayName":"CodeRoad",
4-
"description":"Interactive tutorials in your editor",
5-
"version":"0.0.1",
6-
"engines": {
7-
"vscode":"^1.34.0"
8-
},
9-
"categories": [
10-
"Other"
11-
],
12-
"publisher":"Shawn McKay",
13-
"author": {
14-
"name":"Shawn McKay <shawn.j.mckay@gmail.com>"
15-
},
16-
"bugs": {
17-
"url":"https://github.com/shmck/coderoad-vscode/issues",
18-
"email":"shawn.j.mckay@gmail.com"
19-
},
20-
"repository": {
21-
"type":"git",
22-
"url":"https://github.com/shmck/coderoad-vscode.git"
23-
},
24-
"homepage":"https://github.com/shmck/coderoad-vscode/README.md",
25-
"galleryBanner": {
26-
"color":"#C80000",
27-
"theme":"dark"
28-
},
29-
"activationEvents": [
30-
"onCommand:coderoad.start"
31-
],
32-
"main":"./build/extension.js",
33-
"contributes": {
34-
"commands": [
35-
{
36-
"command":"coderoad.start",
37-
"title":"Start",
38-
"category":"CodeRoad"
39-
},
40-
{
41-
"command":"coderoad.set_layout",
42-
"title":"Set Layout",
43-
"category":"CodeRoad"
44-
}
45-
]
46-
},
47-
"scripts": {
48-
"vscode:prepublish":"npm run build",
49-
"machine":"node ./out/state/index.js",
50-
"build":"rm -rf build && concurrently\"npm run build:ext\"\"npm run build:web\"",
51-
"build:ext":"npm run compile",
52-
"build:web":"cd web-app && npm run build",
53-
"compile":"tsc -p ./",
54-
"watch":"tsc -watch -p ./",
55-
"postinstall":"node ./node_modules/vscode/bin/install",
56-
"storybook":"cd web-app && npm run storybook",
57-
"test":"npm run build && node ./node_modules/vscode/bin/test"
58-
},
59-
"devDependencies": {
60-
"@types/mocha":"^5.2.7",
61-
"@types/node":"^12.6.2",
62-
"concurrently":"^4.1.1",
63-
"prettier":"^1.18.2",
64-
"tslint":"^5.18.0",
65-
"tslint-config-prettier":"^1.18.0",
66-
"typescript":"^3.5.3"
67-
},
68-
"dependencies": {
69-
"vscode":"^1.1.35",
70-
"xstate":"^4.6.7"
71-
},
72-
"license":"SEE LICENSE IN LICENSE.md"
2+
"name":"coderoad-vscode",
3+
"displayName":"CodeRoad",
4+
"description":"Interactive tutorials in your editor",
5+
"version":"0.0.1",
6+
"engines": {
7+
"vscode":"^1.34.0"
8+
},
9+
"categories": [
10+
"Other"
11+
],
12+
"publisher":"Shawn McKay",
13+
"author": {
14+
"name":"Shawn McKay <shawn.j.mckay@gmail.com>"
15+
},
16+
"bugs": {
17+
"url":"https://github.com/shmck/coderoad-vscode/issues",
18+
"email":"shawn.j.mckay@gmail.com"
19+
},
20+
"repository": {
21+
"type":"git",
22+
"url":"https://github.com/shmck/coderoad-vscode.git"
23+
},
24+
"homepage":"https://github.com/shmck/coderoad-vscode/README.md",
25+
"galleryBanner": {
26+
"color":"#C80000",
27+
"theme":"dark"
28+
},
29+
"activationEvents": [
30+
"onCommand:coderoad.start"
31+
],
32+
"main":"./build/extension.js",
33+
"contributes": {
34+
"commands": [
35+
{
36+
"command":"coderoad.start",
37+
"title":"Start",
38+
"category":"CodeRoad"
39+
},
40+
{
41+
"command":"coderoad.set_layout",
42+
"title":"Set Layout",
43+
"category":"CodeRoad"
44+
}
45+
]
46+
},
47+
"scripts": {
48+
"vscode:prepublish":"npm run build",
49+
"machine":"node ./out/state/index.js",
50+
"build":"rm -rf build && concurrently\"npm run build:ext\"\"npm run build:web\"",
51+
"build:ext":"npm run compile",
52+
"build:web":"cd web-app && npm run build",
53+
"compile":"tsc -p ./",
54+
"watch":"tsc -watch -p ./",
55+
"postinstall":"node ./node_modules/vscode/bin/install",
56+
"storybook":"cd web-app && npm run storybook",
57+
"test":"npm run build && node ./node_modules/vscode/bin/test"
58+
},
59+
"devDependencies": {
60+
"@types/mocha":"^5.2.7",
61+
"@types/node":"^12.6.2",
62+
"concurrently":"^4.1.1",
63+
"prettier":"^1.18.2",
64+
"tslint":"^5.18.0",
65+
"tslint-config-prettier":"^1.18.0",
66+
"typescript":"^3.5.3"
67+
},
68+
"dependencies": {
69+
"vscode":"^1.1.35",
70+
"xstate":"^4.6.7"
71+
},
72+
"license":"SEE LICENSE IN LICENSE.md"
7373
}

‎tsconfig.json

Lines changed: 24 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,26 @@
11
{
2-
"compilerOptions": {
3-
"module":"commonjs",
4-
"target":"es6",
5-
"outDir":"build",
6-
"lib": [
7-
"es6",
8-
"dom"
9-
],
10-
"sourceMap":true,
11-
"rootDir":"src",
12-
"baseUrl":"src",
13-
"strict":true,/* enable all strict type-checking options*/
14-
/* Additional Checks*/
15-
"forceConsistentCasingInFileNames":true,
16-
"noImplicitReturns":true,
17-
"noImplicitThis":true,
18-
"noImplicitAny":true,
19-
"strictNullChecks":true,
20-
"suppressImplicitAnyIndexErrors":true,
21-
"noUnusedLocals":false,
22-
"experimentalDecorators":true,
23-
"emitDecoratorMetadata":true,
24-
"paths": {
25-
"typings": ["../typings/index.d.ts"]
26-
},
27-
},
28-
"exclude": [
29-
"node_modules",
30-
".vscode-test",
31-
"build",
32-
"resources",
33-
"web-app"
34-
]
2+
"compilerOptions": {
3+
"module":"commonjs",
4+
"target":"es6",
5+
"outDir":"build",
6+
"lib": ["es6","dom"],
7+
"sourceMap":true,
8+
"rootDir":"src",
9+
"baseUrl":"src",
10+
"strict":true/* enable all strict type-checking options*/,
11+
/* Additional Checks*/
12+
"forceConsistentCasingInFileNames":true,
13+
"noImplicitReturns":true,
14+
"noImplicitThis":true,
15+
"noImplicitAny":true,
16+
"strictNullChecks":true,
17+
"suppressImplicitAnyIndexErrors":true,
18+
"noUnusedLocals":false,
19+
"experimentalDecorators":true,
20+
"emitDecoratorMetadata":true,
21+
"paths": {
22+
"typings": ["../typings/index.d.ts"]
23+
}
24+
},
25+
"exclude": ["node_modules",".vscode-test","build","resources","web-app"]
3526
}

‎tslint.json

Lines changed: 13 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,15 @@
11
{
2-
"extends": [
3-
"tslint:latest",
4-
"tslint-config-prettier"
5-
],
6-
"rules": {
7-
"no-string-throw":true,
8-
"no-unused-expression":true,
9-
"no-duplicate-variable":true,
10-
"curly":true,
11-
"class-name":true,
12-
"semicolon": [
13-
true,
14-
"never"
15-
],
16-
"triple-equals":true,
17-
"interface-name": [
18-
true,
19-
"never-prefix"
20-
]
21-
},
22-
"defaultSeverity":"warning",
23-
"no-submodule-imports":false,
2+
"extends": ["tslint:latest","tslint-config-prettier"],
3+
"rules": {
4+
"no-string-throw":true,
5+
"no-unused-expression":true,
6+
"no-duplicate-variable":true,
7+
"curly":true,
8+
"class-name":true,
9+
"semicolon": [true,"never"],
10+
"triple-equals":true,
11+
"interface-name": [true,"never-prefix"]
12+
},
13+
"defaultSeverity":"warning",
14+
"no-submodule-imports":false
2415
}

‎web-app/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,6 @@
2121
npm-debug.log*
2222
yarn-debug.log*
2323
yarn-error.log*
24+
25+
# storybook
26+
storybook-static

‎web-app/.storybook/addons.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
import'@storybook/addon-actions/register'
2-
import'@storybook/addon-links/register'
32
import'@storybook/addon-knobs/register'
3+
import'@storybook/addon-links/register'
4+

‎web-app/.storybook/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import{configure}from'@storybook/react'
21
import'@alifd/next/dist/next.css'
2+
import{configure}from'@storybook/react'
33

44
// automatically import all files ending in *.stories.tsx
55
constreq=require.context('../stories',true,/\.stories\.tsx$/)

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp