-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
32 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
CONTRIBUTING | ||
======================= | ||
|
||
|
||
## How to develope this extension | ||
|
||
We use yarn to manage dependencies. You can install yarn from [here](https://yarnpkg.com/en/docs/install). | ||
Then, please run `yarn` to install dependencies. | ||
|
||
### Some useful scripts | ||
|
||
- `yarn run compile`: compile typescript files | ||
- `yarn run watch`: watch and compile typescript files automatically | ||
- `yarn run package`: package extension | ||
|
||
### How to submit to the marketplace | ||
|
||
Please see [here](https://code.visualstudio.com/docs/extensions/publish-extension). | ||
|
||
Make sure you have Node.js installed. Then run: | ||
```sh | ||
npm install -g @vscode/vsce | ||
``` | ||
|
||
Remember to change the version number in `package.json` before publishing. | ||
Then you can publish the extension by running: | ||
```sh | ||
vsce package | ||
vsce publish | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters