소스 검색

Add instructions about publishing packages.

Jason Grout 8 년 전
부모
커밋
435b373658
1개의 변경된 파일13개의 추가작업 그리고 0개의 파일을 삭제
  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
 ------------------