-
Notifications
You must be signed in to change notification settings - Fork 1
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
3 changed files
with
31 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 |
---|---|---|
|
@@ -10,4 +10,6 @@ vsc-extension-quickstart.md | |
**/*.map | ||
**/*.ts | ||
node_modules/** | ||
.github/** | ||
.github/** | ||
DEPLOY.md | ||
DEVELOPMENT.md |
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,12 @@ | ||
# How to deploy | ||
|
||
1. Increase version | ||
Increase version number by using `npm version patch | minor | major` | ||
|
||
*Example: increasing patch version* | ||
```bash | ||
npm version patch | ||
``` | ||
1. Commit & Push | ||
1. Create new release | ||
Create new release at with the version number (vX.X.X) at https://github.com/configcat/vscode-extension-configcat/releases. |
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,16 @@ | ||
# Development | ||
## Modules | ||
The code is splitted into 2 parts. | ||
|
||
### Webpanel | ||
The webpanel is an Angular project, which can show and update Feature Flag values. | ||
Source: `./webpanel` | ||
Build it with `npm run webpanel-build` | ||
|
||
### VS Code extension | ||
Source: `./src` | ||
Build it with `npm run esbuild` or run it with hitting F5 in VSCode | ||
|
||
## Packaging | ||
To create a vsix package run `npm run package`. | ||
This package can be installed in VSCode/Extensions/... menu/Install from VSIX package. |