Skip to content

Commit

Permalink
🚚 Rename package for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
trallard committed Nov 27, 2020
1 parent 879eecc commit 020c3bb
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ install:
- pip install --upgrade ".[test]" -v
script:
- jupyter nbextension list
- jupyter nbextension enable --py --sys-prefix jupyter_pitaya_smoothie
- jupyter nbextension enable --py --sys-prefix jupyter-pitaya-smoothie
- pip install jupyterlab
- jupyter labextension list
- jupyter labextension list 2>&1 | grep -q jupyter_pitaya_smoothie
- jupyter labextension list 2>&1 | grep -q jupyter-pitaya-smoothie
- jupyter labextension link
4 changes: 2 additions & 2 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2020, jupyter_pitaya_smoothie
Copyright (c) 2020, jupyter-pitaya-smoothie
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand All @@ -11,7 +11,7 @@ modification, are permitted provided that the following conditions are met:
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.

* Neither the name of jupyter_pitaya_smoothie nor the names of its
* Neither the name of jupyter-pitaya-smoothie nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@trallard/jupyter_pitaya_smoothie",
"name": "@trallard/jupyter-pitaya-smoothie",
"version": "0.1.0",
"description": "Pitaya Smoothie in JupyterLab: a dark theme inspired by 2018 Pantone of the Year. Designed for low-light condition and colorblindness tested.",
"author": "Tania Allard <[email protected]>",
Expand Down
8 changes: 4 additions & 4 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ import {
import { IThemeManager } from '@jupyterlab/apputils';

/**
* A plugin for trallard/jupyter_pitaya_smoothie
* A plugin for trallard/jupyter-pitaya-smoothie
*/
const plugin: JupyterFrontEndPlugin<void> = {
id: '@trallard/jupyter_pitaya_smoothie:plugin',
id: '@trallard/jupyter-pitaya-smoothie:plugin',
requires: [IThemeManager],
activate: function (app: JupyterFrontEnd, manager: IThemeManager) {
const style = '@trallard/jupyter_pitaya_smoothie/index.css';
const style = '@trallard/jupyter-pitaya-smoothie/index.css';

manager.register({
name: 'jupyter_pitaya_smoothie',
name: 'Pitaya Smoothie',
isLight: false,
load: () => manager.loadCSS(style),
unload: () => Promise.resolve(undefined)
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.tsbuildinfo
Original file line number Diff line number Diff line change
Expand Up @@ -1426,8 +1426,8 @@
"signature": "7a7e8dec050f4ad9d6b093812a3a203acb13a32364079db20f7a6fde38f8427c"
},
"./src/index.ts": {
"version": "55fbf638d8ca77d9048955b6d52f11f44e52be6902f9e1a3ffeb219e222eea1a",
"signature": "b2876e2596c1664ab83dc2b3a1171ffc228aa454cceeba3bb17b821909d3e586"
"version": "5fff7a0d7cbc5756310eeded4c6d8c6e93f4be1777052348da9a2063b0c4f3d4",
"signature": "dfa696bed418475319f601b6e8915ed1c3d1c7c2e7ded3b9d94048045b5560ff"
}
},
"options": {
Expand Down

0 comments on commit 020c3bb

Please sign in to comment.