Skip to content

Commit 6eea5b1

Browse files
author
wangxingkang
committed
chore: project init
1 parent 0709c84 commit 6eea5b1

File tree

13 files changed

+10396
-0
lines changed

13 files changed

+10396
-0
lines changed

.editorconfig

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# http://editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true
11+
12+
[*.md]
13+
trim_trailing_whitespace = false
14+
15+
[Makefile]
16+
indent_style = tab

.fatherrc.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
export default {
2+
target: 'node',
3+
cjs: {
4+
type: 'babel'
5+
}
6+
};

.vscode/launch.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [{
4+
"name": "Run Extension",
5+
"type": "extensionHost",
6+
"request": "launch",
7+
"runtimeExecutable": "${execPath}",
8+
"args": [
9+
"--extensionDevelopmentPath=${workspaceFolder}"
10+
],
11+
"outFiles": [
12+
"${workspaceFolder}/out/**/*.js"
13+
],
14+
"preLaunchTask": "npm: watch"
15+
}
16+
]
17+
}

.vscode/tasks.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"type": "npm",
6+
"script": "watch",
7+
"problemMatcher": "$tsc-watch",
8+
"isBackground": true,
9+
"presentation": {
10+
"reveal": "never"
11+
},
12+
"group": {
13+
"kind": "build",
14+
"isDefault": true
15+
}
16+
}
17+
]
18+
}

.vscodeignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.gitignore

README.md

Whitespace-only changes.

images/logo.png

17.5 KB
Loading

out/extension.js

Lines changed: 14 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

out/extension.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
{
2+
"name": "@walrus/vscode-plugin",
3+
"displayName": "walrus",
4+
"version": "0.0.1",
5+
"publisher": "阿康",
6+
"description": "walrus vscode plugin",
7+
"main": "./lib/extension.js",
8+
"keywords": [
9+
"vscode",
10+
"plugin",
11+
"walrus"
12+
],
13+
"repository": "git@github.com:walrus-plus/vscode-plugin-walrus.git",
14+
"author": "wangxingkang <wang_xingkang@qq.com>",
15+
"license": "MIT",
16+
"scripts": {
17+
"vscode:prepublish": "npm run compile",
18+
"compile": "tsc -p ./",
19+
"lint": "tslint -p ./",
20+
"watch": "tsc -watch -p ./"
21+
},
22+
"activationEvents": [
23+
"onCommand:extension.walrus"
24+
],
25+
"contributes": {
26+
"commands": [
27+
{
28+
"command": "extension.walrus",
29+
"title": "Hello World"
30+
}
31+
]
32+
},
33+
"icon": "images/logo.png",
34+
"categories": [
35+
"Other"
36+
],
37+
"engines": {
38+
"vscode": "^1.33.0"
39+
},
40+
"devDependencies": {
41+
"@types/node": "^12.11.7",
42+
"@types/vscode": "^1.39.0",
43+
"@walrus/cli": "^0.2.2",
44+
"father-build": "^1.14.0",
45+
"typescript": "^3.6.4"
46+
}
47+
}

0 commit comments

Comments
 (0)