File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -3,8 +3,6 @@ include README.md
33
44include setupbase.py
55
6- include jupyterlab_git/labextension/*.tgz
7-
86# Patterns to exclude from any directory
97global-exclude *~
108global-exclude *.pyc
Original file line number Diff line number Diff line change 1414 "scripts" : {
1515 "build" : " jlpm install && tsc" ,
1616 "build:labextension" : " jlpm build && jlpm clean:labextension && mkdirp jupyterlab_git/labextension && cd jupyterlab_git/labextension && npm pack ../.." ,
17- "clean" : " rimraf lib && rimraf tsconfig.tsbuildinfo" ,
18- "clean:more" : " jlpm clean && rimraf build && rimraf dist" ,
17+ "clean" : " rimraf lib tsconfig.tsbuildinfo" ,
18+ "clean:more" : " jlpm clean && rimraf build dist MANIFEST " ,
1919 "clean:labextension" : " rimraf jupyterlab_git/labextension" ,
2020 "clean:slate" : " jlpm clean:more && jlpm clean:labextension && rimraf node_modules" ,
2121 "watch" : " tsc -w" ,
Original file line number Diff line number Diff line change 1- """
2- Setup Module to setup Python Handlers (Git Handlers) for the Git Plugin.
1+ """Setup Module to setup Python serverextension for the jupyterlab git
2+ extension. For non-dev installs, will also automatically
3+ build (if package.json is present) and install (if the labextension exists,
4+ eg the build succeeded) the corresponding labextension.
35"""
46from pathlib import Path
57from subprocess import CalledProcessError
You can’t perform that action at this time.
0 commit comments