Skip to content

Commit 4c89807

Browse files
committed
fix: build
1 parent 21a9cdd commit 4c89807

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

hatch_build.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616

1717
def build_javascript():
1818
check_call(
19-
['npm', 'install'],
19+
['jlpm', 'install'],
2020
cwd=here,
2121
)
2222
check_call(
23-
['npm', 'run', 'build:webpack', '--', '--mode=production'],
23+
['jlpm', 'run', 'build:webpack', '--', '--mode=production'],
2424
cwd=here,
2525
)
2626
for file in glob.glob(r'./dist/*.js'):

jupyter_viewer/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@ def _jupyter_server_extension_points() -> List[Dict[str, Any]]:
1313
"app": JupyterViewerExtensionApp,
1414
}]
1515

16-
16+
"""
1717
def _jupyter_labextension_paths() -> List[Dict[str, str]]:
1818
return [{
1919
"src": "labextension",
2020
"dest": "@datalayer/jupyter-viewer"
2121
}]
22+
"""

0 commit comments

Comments
 (0)