forked from jupyterlab-contrib/jupyterlab-topbar
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade topbar extensions to JupyterLab 4 (jupyterlab-contrib#92)
* Add logout extension package * Add theme toggler extension package * Ignore and remove labextension files * Add system monitor package * Add topbar text package * Remove obselete files * Add linters configs * Update package.json and yarn.lock * Update gitignore files * Attempt to modernise github workflows * Update README * Add rootdir for eslint config * Add .yarnrc.yml file for each package * Update gitignore for all packages * Fix errors in workflow files * Lint source code * Remove system-monitor extension Will add this extension to the jupyter-resource-usage repo. See #195, #191 in jupyter-resource-usage * Update gitignore files Remove _version.py files from VCS. Hatchling will handle them directly. * Attempt to fix errors in CI * Setup matrix vars in CI to give extension name * Bump coreutils to 6.0.0 Mistakenly we were using coreutils 4.0.0 which made topbar-text extension outdated * Attempt to fix packaging workflow * Move CI and binder badges to README in root Remove badges from README of packages Remove references to jupyterlab-resource-monitor in README. Add a note that the package can be installed from jupyter-resource-usage Add postBuild file for binder * Make linter happy * Address PR comments Change extension names from @jupyterlab-* to jupyterlab-* to avoid clashing with official extensions Use jupyterlab-topbar as command namespace for logout extension * Remove extension suffix from package names * Remove extension suffix from names in CI tests
- Loading branch information
1 parent
6099246
commit 33be88b
Showing
78 changed files
with
14,117 additions
and
9,117 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,5 @@ dist | |
coverage | ||
**/*.d.ts | ||
tests | ||
venv | ||
.venv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,5 @@ node_modules | |
**/node_modules | ||
**/lib | ||
**/package.json | ||
**/venv | ||
**/.venv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"extends": [ | ||
"stylelint-config-recommended", | ||
"stylelint-config-standard", | ||
"stylelint-prettier/recommended" | ||
], | ||
"rules": { | ||
"no-empty-source": null, | ||
"selector-class-pattern": null, | ||
"property-no-vendor-prefix": null, | ||
"selector-no-vendor-prefix": null, | ||
"value-no-vendor-prefix": null | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
enableImmutableInstalls: false | ||
nodeLinker: node-modules |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.