-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
Allow disabling of extensions #3078
Merged
Merged
Conversation
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
…ar expression patterns instead of string matches.
cc @gnestor, re: API change to mime extensions |
cc @lucbouchard1. In the next release you'd be able to replace extensions without manually removing them from the exports. Also, see #2936 which provides a script to validate and extract schemas and themes from extensions. |
cc @ivanov ^^ |
Nice, thanks! |
Closed
lock
bot
added
the
status:resolved-locked
Closed issues are locked after 30 days inactivity. Please open a new issue for related discussion.
label
Aug 9, 2019
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
status:resolved-locked
Closed issues are locked after 30 days inactivity. Please open a new issue for related discussion.
tag:Build System
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There are two fields in the
page_config.json
file that can allow control of which plugins load:disabledExtensions
for extensions that should not load at all.deferredExtensions
for extensions that do not load until they are required by something, irrespective of whether they setautostart
totrue
.The values for each are an array of strings.
"@jupyterlab/apputils-extension"
), then the entire package is disabled (or deferred)."disabledExtensions": ["@jupyterlab/apputils*$"]
), then the entire package is disabled (or deferred)."disabledExtensions": ["@jupyterlab/apputils-extension:settings"]
), then that specific plugin is disabled (or deferred). CC: @ivanov @ellisonbg"disabledExtensions": ["^@jupyterlab/apputils-extension:set.*$"]
), then that specific plugin is disabled (or deferred).Backward-incompatible API change
The MIME renderer extension interface no longer has a
name
field. Instead, it has anid
field that follows the same semantic conventions as our other plugins. So for example, thename
field of the Vega renderer has changed fromname: 'vega'
toid: '@jupyterlab/vega2-extension:factory'