Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,10 @@ install:
script:
- yarn
- yarn run build
- jupyter labextension link packages/fasta-extension --no-build
- jupyter labextension link packages/geojson-extension --no-build
- jupyter labextension link packages/plotly-extension --no-build
- jupyter labextension link packages/katex-extension --no-build
- jupyter labextension link packages/plotly-extension --no-build
- jupyter labextension link packages/vega2-extension --no-build
- jupyter lab build
- python -m jupyterlab.selenium_check
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,18 @@
"private": true,
"scripts": {
"build": "lerna run --parallel build",
"link": "lerna exec --parallel -- jupyter labextension link .",
"link": "lerna exec --parallel -- jupyter labextension link . --no-build",
"publish": "lerna publish --git-remote jupyterlab",
"watch": "lerna run --parallel watch"
},
"devDependencies": {
"lerna": "^2.5.0",
"tslint": "^5.9.1"
},
"resolutions": {
"@types/react": "16.3.13",
"@types/react-dom": "16.0.3"
},
"workspaces": [
"packages/*"
]
Expand Down
2 changes: 1 addition & 1 deletion packages/fasta-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"mimeExtension": true
},
"dependencies": {
"@jupyterlab/rendermime-interfaces": "^1.0.7",
"@jupyterlab/rendermime-interfaces": "^1.0.9",
"@phosphor/messaging": "^1.2.2",
"@phosphor/widgets": "^1.5.0",
"msa": "^1.0.3"
Expand Down
2 changes: 1 addition & 1 deletion packages/geojson-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"mimeExtension": true
},
"dependencies": {
"@jupyterlab/rendermime-interfaces": "^1.0.7",
"@jupyterlab/rendermime-interfaces": "^1.0.9",
"@phosphor/messaging": "^1.2.2",
"@phosphor/widgets": "^1.5.0",
"leaflet": "^1.2.0"
Expand Down
4 changes: 2 additions & 2 deletions packages/katex-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
"katex"
],
"dependencies": {
"@jupyterlab/application": "^0.16.0",
"@jupyterlab/application": "^0.16.3",
"@jupyterlab/rendermime": "^0.16.0",
"@jupyterlab/rendermime-interfaces": "^1.0.7",
"@jupyterlab/rendermime-interfaces": "^1.0.9",
"katex": "^0.9.0"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/plotly-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"mimeExtension": true
},
"dependencies": {
"@jupyterlab/rendermime-interfaces": "^1.0.7",
"@jupyterlab/rendermime-interfaces": "^1.0.9",
"@phosphor/messaging": "^1.2.2",
"@phosphor/widgets": "^1.5.0",
"plotly.js": "^1.28.3"
Expand Down
8 changes: 4 additions & 4 deletions packages/vega2-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
"name": "@jupyterlab/vega2-extension",
"version": "0.16.0",
"description": "JupyterLab - Vega 2 and Vega-Lite 1 Mime Renderer Extension",
"homepage": "https://github.com/jupyterlab/jupyterlab",
"homepage": "https://github.com/jupyterlab/jupyter-renderers",
"bugs": {
"url": "https://github.com/jupyterlab/jupyterlab/issues"
"url": "https://github.com/jupyterlab/jupyter-renderers/issues"
},
"license": "BSD-3-Clause",
"author": "Project Jupyter",
Expand All @@ -21,7 +21,7 @@
},
"repository": {
"type": "git",
"url": "https://github.com/jupyterlab/jupyterlab.git"
"url": "https://github.com/jupyterlab/jupyter-renderers.git"
},
"scripts": {
"build": "tsc",
Expand All @@ -30,7 +30,7 @@
"watch": "tsc -w"
},
"dependencies": {
"@jupyterlab/rendermime-interfaces": "^1.0.7",
"@jupyterlab/rendermime-interfaces": "^1.0.9",
"@phosphor/coreutils": "^1.3.0",
"@phosphor/widgets": "^1.5.0",
"vega-embed-v2": "^0.0.3"
Expand Down
Loading