Skip to content

Commit

Permalink
Merge pull request jupyterlab#13 from ian-r-rose/jlabv0.32
Browse files Browse the repository at this point in the history
Updates for JupyterLab v0.32
  • Loading branch information
ian-r-rose authored Apr 14, 2018
2 parents 8522d62 + 5c66899 commit 689f4f6
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 15 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Here is an animation showing the extension's use, with a notebook from the

## Prerequisites

* JupyterLab v0.31
* JupyterLab v0.32

## Installation

Expand Down
29 changes: 16 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jupyterlab-toc",
"version": "0.1.0",
"version": "0.2.0",
"private": false,
"description": "Table of Contents extension for JupyterLab",
"keywords": [
Expand Down Expand Up @@ -30,27 +30,30 @@
"watch": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": "^0.15.0",
"@jupyterlab/apputils": "^0.15.5",
"@jupyterlab/cells": "^0.15.4",
"@jupyterlab/coreutils": "^1.0.10",
"@jupyterlab/docmanager": "^0.15.5",
"@jupyterlab/fileeditor": "^0.15.4",
"@jupyterlab/notebook": "^0.15.7",
"@jupyterlab/rendermime": "^0.15.4",
"@jupyterlab/application": "^0.16.0",
"@jupyterlab/apputils": "^0.16.2",
"@jupyterlab/cells": "^0.16",
"@jupyterlab/coreutils": "^1.0",
"@jupyterlab/docmanager": "^0.16",
"@jupyterlab/fileeditor": "^0.16",
"@jupyterlab/notebook": "^0.16",
"@jupyterlab/rendermime": "^0.16",
"@phosphor/algorithm": "^1.1.2",
"@phosphor/coreutils": "^1.3.0",
"@phosphor/messaging": "^1.2.2",
"@phosphor/widgets": "^1.5.0",
"react": "^16.2.0",
"react-dom": "^16.2.0"
"react": "~16.2.0",
"react-dom": "~16.2.0"
},
"devDependencies": {
"@types/react": "^16.0.40",
"@types/react-dom": "^16.0.4",
"@types/react": "~16.0.19",
"@types/react-dom": "~16.0.5",
"rimraf": "^2.6.1",
"typescript": "~2.6.0"
},
"resolutions": {
"@types/react": "~16.0.19"
},
"jupyterlab": {
"extension": "lib/extension.js"
}
Expand Down
2 changes: 1 addition & 1 deletion src/generators.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export function createMarkdownGenerator(
// one of a few markdown variants.
let mime = editor.model.mimeType;
return (
mime === 'text/x-ipthongfm' ||
mime === 'text/x-ipythongfm' ||
mime === 'text/x-markdown' ||
mime === 'text/x-gfm' ||
mime === 'text/markdown'
Expand Down

0 comments on commit 689f4f6

Please sign in to comment.