We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ed68d3 commit e23408aCopy full SHA for e23408a
Makefile
@@ -9,9 +9,7 @@ help:
9
clean: ## Make a clean source tree
10
-find . -name '*.pyc' -exec rm -fv {} \;
11
rm -rf $(PKG_NAME)/__pycache__ __pycache__
12
- rm -rf *.egg-info
13
- rm -rf node_modules
14
- rm -rf lib
+ rm -rf *.egg-info node_modules/ lib/ dist/
15
16
pipenv: ## Make a pipenv development environment
17
pipenv --python 3.7
@@ -27,7 +25,9 @@ build: ## Make an install of the frontend and server extensions
27
25
jupyter serverextension enable $(PKG_NAME)
28
26
29
release: ## Make a release on PyPI and npmjs.org
+ rm -rf dist/
30
python setup.py sdist
+ ls -l dist/
31
twine upload dist/*.tar.gz
32
npm publish --access=public
33
0 commit comments