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
3
3
4
4
include setupbase.py
5
5
6
- include jupyterlab_git/labextension/*.tgz
7
-
8
6
# Patterns to exclude from any directory
9
7
global-exclude *~
10
8
global-exclude *.pyc
Original file line number Diff line number Diff line change 14
14
"scripts" : {
15
15
"build" : " jlpm install && tsc" ,
16
16
"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 " ,
19
19
"clean:labextension" : " rimraf jupyterlab_git/labextension" ,
20
20
"clean:slate" : " jlpm clean:more && jlpm clean:labextension && rimraf node_modules" ,
21
21
"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.
3
5
"""
4
6
from pathlib import Path
5
7
from subprocess import CalledProcessError
You can’t perform that action at this time.
0 commit comments