Bladeren bron

Merge pull request #149 from jasongrout/packages

Add instructions about publishing packages.
Carol Willing 9 jaren geleden
bovenliggende
commit
6edd4a36b4
1 gewijzigde bestanden met toevoegingen van 13 en 0 verwijderingen
  1. 13 0
      README.md

+ 13 - 0
README.md

@@ -136,6 +136,19 @@ npm run docs
 
 Navigate to `docs/index.html`.
 
+Publishing packages for a JupyterLab release
+--------------------------------------------
+
+We publish an npm package, a pypi source package, and a pypi universal binary wheel.
+
+```bash
+npm version patch
+git push origin master --tags
+npm publish
+python setup.py sdist upload
+python setup.py bdist_wheel --universal upload
+```
+
 
 Supported Runtimes
 ------------------