Skip to content

Commit

Permalink
deploy, development md
Browse files Browse the repository at this point in the history
  • Loading branch information
lajos88 committed May 5, 2021
1 parent 1f86913 commit 065d154
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,6 @@ vsc-extension-quickstart.md
**/*.map
**/*.ts
node_modules/**
.github/**
.github/**
DEPLOY.md
DEVELOPMENT.md
12 changes: 12 additions & 0 deletions DEPLOY.md
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.
16 changes: 16 additions & 0 deletions DEVELOPMENT.md
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.

0 comments on commit 065d154

Please sign in to comment.