Skip to content

Commit 900f240

Browse files
authored
Merge pull request #13 from cangzhang/change/publish
2 parents f157d02 + eeece04 commit 900f240

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

.vscodeignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
.vscode
2+
node_modules
3+
out/
4+
src/
5+
tsconfig.json
6+
webpack.config.js
7+
webviews/
8+
.gitignore
9+
.editorconfig
10+
.prettierignore
11+
.prettierrc.js
12+
yarn.lock

package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "coding-plugin",
33
"description": "Coding plugin for VS Code.",
4-
"version": "0.1.0",
4+
"version": "0.2.0",
55
"publisher": "coding-net",
66
"license": "MIT",
77
"engines": {
@@ -15,6 +15,7 @@
1515
"onCommand:codingPlugin.login",
1616
"onView:mrTreeView"
1717
],
18+
"icon": "src/assets/coding.png",
1819
"repository": {
1920
"type": "git",
2021
"url": "https://github.com/cangzhang/coding-vscode.git"
@@ -124,7 +125,9 @@
124125
"watch": "npm-run-all -p watch:*",
125126
"watch:extension": "tsc -watch -p ./src",
126127
"watch:webviews": "webpack --watch --mode development",
127-
"lint": "eslint . --ext .ts,.tsx"
128+
"lint": "eslint . --ext .ts,.tsx",
129+
"package": "npx vsce package",
130+
"publish": "npx vsce publish"
128131
},
129132
"babel": {
130133
"plugins": [

0 commit comments

Comments
 (0)