Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes for JupyterLab 1.0.0 #5

Merged
merged 7 commits into from Jul 31, 2019
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -45,6 +45,7 @@ examples/app/schemas

lerna-debug.log
yarn-error.log
tsconfig.tsbuildinfo

junit.xml

Expand Down
34 changes: 28 additions & 6 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "@telamonian/theme-darcula",
"version": "1.0.0-alpha.3",
"version": "1.0.0",
"description": "Darcula theme for Jupyterlab. Modelled after the classic Intellij theme.",
"author": "Max Klein",
"keywords": [
Expand All @@ -24,18 +24,40 @@
"lib": "lib/"
},
"scripts": {
"build": "tsc -b",
"build": "jlpm install && tsc",
"build:link": "jlpm run build && jlpm run link",
"build:local": "jlpm run build && jlpm run local",
"build:watch": "jlpm run build --watch",
"clean": "rimraf lib",
"prepare": "npm run clean && npm run build",
"clean:slate": "jlpm run clean && rimraf node_modules",
"integrity": "echo integrity",
"link": "jupyter labextension link . --no-build",
"local": "jupyter labextension install .",
"precommit": "lint-staged",
"prepublishOnly": "npm run build",
"prettier": "prettier --write '**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}'",
"unlink": "jupyter labextension unlink jupyterlab-hdf5 --no-build",
"watch": "tsc -w"
},
"lint-staged": {
"**/*{.ts,.tsx,.css,.json,.md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@jupyterlab/application": "^1.0.0-alpha.3",
"@jupyterlab/apputils": "^1.0.0-alpha.3"
"@jupyterlab/application": "^1.0.2",
"@jupyterlab/apputils": "^1.0.2"
},
"devDependencies": {
"husky": "^3.0.1",
"lint-staged": "^9.2.0",
"prettier": "^1.13.7",
"rimraf": "~2.6.2",
"typescript": "~3.3.1"
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.13.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "~3.5.1"
},
"publishConfig": {
"access": "public"
Expand Down
1 change: 1 addition & 0 deletions src/index.ts
Expand Up @@ -17,6 +17,7 @@ const plugin: JupyterFrontEndPlugin<void> = {
manager.register({
name: 'theme-darcula',
isLight: false,
themeScrollbars: true,
load: () => manager.loadCSS(style),
unload: () => Promise.resolve(undefined)
});
Expand Down
12 changes: 12 additions & 0 deletions style/icons/jupyter/console_selected.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
84 changes: 0 additions & 84 deletions style/icons/jupyter/directory.svg

This file was deleted.

84 changes: 0 additions & 84 deletions style/icons/jupyter/directory_selected.svg

This file was deleted.

83 changes: 0 additions & 83 deletions style/icons/jupyter/launcher.svg

This file was deleted.