From dc259a26853fe50da29df4a330a7967038ad5115 Mon Sep 17 00:00:00 2001 From: Kaushik Ghose Date: Wed, 13 Nov 2019 20:54:49 -0500 Subject: [PATCH] Note down steps to make releases --- docs/developer.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/developer.md b/docs/developer.md index a9b0532..832d0d9 100644 --- a/docs/developer.md +++ b/docs/developer.md @@ -29,6 +29,18 @@ Currently (04.2019) the only way to do this in VS Code is to use the "Reload Window" command: CMD + Shift + P to bring up the command bar and then type "Reload Window". +### Release on PyPi + +``` +python3 setup.py sdist bdist_wheel +twine upload dist/... +``` + +### Release on VS Code Marketplace + +`vsce package` and then upload the `.vsix` file + + ### Code organization ```