-
Notifications
You must be signed in to change notification settings - Fork 10
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
1 changed file
with
21 additions
and
0 deletions.
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,21 @@ | ||
# Documentation for maintainers | ||
|
||
Since this is a VSCode Extension used by PHP/Javascript programmers it might be a good idea to document | ||
some things. | ||
|
||
Full documentation on https://code.visualstudio.com/api/working-with-extensions/publishing-extension | ||
|
||
## Making a release | ||
|
||
- Write changelog | ||
- Update version number in `package.json` & `VERSION.md` | ||
- Commit & Push those changes and create a new tag with the version number | ||
- Make a [new release with GitHub](https://github.com/WengerK/vscode-highlight-bad-chars/releases/new) | ||
- Create a Publish Access Token on Azure (https://dev.azure.com/wengerk) | ||
- Build the extension with `vsce package` | ||
- Login wit the previously created access Token `vsce login TOKEN` to publish | ||
- Publish the extension `vsce publish` | ||
|
||
It makes take some minutes for the extension to be published on the Market. | ||
https://marketplace.visualstudio.com/items?itemName=wengerk.highlight-bad-chars | ||
|