Skip to content

Commit

Permalink
Merge pull request #517 from vidartf/no-net
Browse files Browse the repository at this point in the history
Remove run-time deps from webapps
  • Loading branch information
vidartf committed Mar 9, 2020
2 parents a9435d5 + 326da89 commit 133c4bf
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,12 @@ before_install:
npm install -g codecov
fi
install:
# Don't use -v with JS as travis chokes with [Errno 11] write could not complete without blocking
- |
if [[ $GROUP == python ]]; then
pip install --upgrade --upgrade-strategy=eager ".[test]" -v
elif [[ $GROUP == js ]]; then
pip install --upgrade --upgrade-strategy=eager -e ".[test]" -v
pip install --upgrade --upgrade-strategy=eager -e ".[test]"
fi
before_script:
# Set up a virtual screen for Firefox browser testing:
Expand Down
3 changes: 0 additions & 3 deletions nbdime/webapp/templates/nbdimepage.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script type="text/javascript" src="https://www.promisejs.org/polyfills/promise-6.1.0.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.2.0/require.js"></script>

<title>nbdime - diff and merge your Jupyter notebooks</title>

Expand Down
1 change: 1 addition & 0 deletions packages/webapp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"watch": "webpack --watch"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.12.0",
"@jupyterlab/application": "^2.0.0",
"@jupyterlab/apputils": "^2.0.0",
"@jupyterlab/cells": "^2.0.0",
Expand Down
3 changes: 3 additions & 0 deletions packages/webapp/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ import {
} from './app/common';


import '@fortawesome/fontawesome-free/css/all.min.css';
import '@fortawesome/fontawesome-free/css/v4-shims.min.css';

import 'codemirror/lib/codemirror.css';
import '@jupyterlab/codemirror/style/index.css';

Expand Down

0 comments on commit 133c4bf

Please sign in to comment.