Skip to content

Commit

Permalink
Merge pull request #6628 from ellisonbg/broken-faq
Browse files Browse the repository at this point in the history
Remove the FAQ extension
  • Loading branch information
jasongrout committed Jun 19, 2019
2 parents eb0c1b7 + 22bc8eb commit fd18d01
Show file tree
Hide file tree
Showing 17 changed files with 4 additions and 269 deletions.
1 change: 0 additions & 1 deletion buildutils/src/ensure-repo.ts
Expand Up @@ -52,7 +52,6 @@ let SKIP_CSS: Dict<string[]> = {
],
'@jupyterlab/filebrowser': ['@jupyterlab/statusbar'],
'@jupyterlab/fileeditor': ['@jupyterlab/statusbar'],
'@jupyterlab/faq-extension': ['@jupyterlab/application'],
'@jupyterlab/help-extension': ['@jupyterlab/application'],
'@jupyterlab/shortcuts-extension': ['@jupyterlab/application'],
'@jupyterlab/tabmanager-extension': ['@jupyterlab/application'],
Expand Down
1 change: 0 additions & 1 deletion dev_mode/imports.css
Expand Up @@ -9,7 +9,6 @@
@import url('~@jupyterlab/docmanager-extension/style/index.css');
@import url('~@jupyterlab/documentsearch-extension/style/index.css');
@import url('~@jupyterlab/extensionmanager-extension/style/index.css');
@import url('~@jupyterlab/faq-extension/style/index.css');
@import url('~@jupyterlab/filebrowser-extension/style/index.css');
@import url('~@jupyterlab/fileeditor-extension/style/index.css');
@import url('~@jupyterlab/help-extension/style/index.css');
Expand Down
3 changes: 0 additions & 3 deletions dev_mode/package.json
Expand Up @@ -27,7 +27,6 @@
"@jupyterlab/documentsearch-extension": "^1.0.0-alpha.13",
"@jupyterlab/extensionmanager": "^1.0.0-alpha.11",
"@jupyterlab/extensionmanager-extension": "^1.0.0-alpha.11",
"@jupyterlab/faq-extension": "^1.0.0-alpha.11",
"@jupyterlab/filebrowser": "^1.0.0-alpha.11",
"@jupyterlab/filebrowser-extension": "^1.0.0-alpha.11",
"@jupyterlab/fileeditor": "^1.0.0-alpha.11",
Expand Down Expand Up @@ -126,7 +125,6 @@
"@jupyterlab/docmanager-extension": "",
"@jupyterlab/documentsearch-extension": "",
"@jupyterlab/extensionmanager-extension": "",
"@jupyterlab/faq-extension": "",
"@jupyterlab/filebrowser-extension": "",
"@jupyterlab/fileeditor-extension": "",
"@jupyterlab/help-extension": "",
Expand Down Expand Up @@ -222,7 +220,6 @@
"@jupyterlab/docmanager-extension": "../packages/docmanager-extension",
"@jupyterlab/documentsearch-extension": "../packages/documentsearch-extension",
"@jupyterlab/extensionmanager-extension": "../packages/extensionmanager-extension",
"@jupyterlab/faq-extension": "../packages/faq-extension",
"@jupyterlab/filebrowser-extension": "../packages/filebrowser-extension",
"@jupyterlab/fileeditor-extension": "../packages/fileeditor-extension",
"@jupyterlab/help-extension": "../packages/help-extension",
Expand Down
1 change: 0 additions & 1 deletion examples/app/package.json
Expand Up @@ -17,7 +17,6 @@
"@jupyterlab/console-extension": "^1.0.0-alpha.11",
"@jupyterlab/csvviewer-extension": "^1.0.0-alpha.12",
"@jupyterlab/docmanager-extension": "^1.0.0-alpha.11",
"@jupyterlab/faq-extension": "^1.0.0-alpha.11",
"@jupyterlab/filebrowser-extension": "^1.0.0-alpha.11",
"@jupyterlab/fileeditor-extension": "^1.0.0-alpha.11",
"@jupyterlab/help-extension": "^1.0.0-alpha.11",
Expand Down
3 changes: 0 additions & 3 deletions packages/faq-extension/README.md

This file was deleted.

17 changes: 0 additions & 17 deletions packages/faq-extension/faq.md

This file was deleted.

56 changes: 0 additions & 56 deletions packages/faq-extension/package.json

This file was deleted.

105 changes: 0 additions & 105 deletions packages/faq-extension/src/index.ts

This file was deleted.

21 changes: 0 additions & 21 deletions packages/faq-extension/style/base.css

This file was deleted.

10 changes: 0 additions & 10 deletions packages/faq-extension/style/index.css

This file was deleted.

20 changes: 0 additions & 20 deletions packages/faq-extension/tdoptions.json

This file was deleted.

20 changes: 0 additions & 20 deletions packages/faq-extension/tsconfig.json

This file was deleted.

8 changes: 3 additions & 5 deletions packages/help-extension/src/index.tsx
Expand Up @@ -153,11 +153,9 @@ function activate(

// Populate the Help menu.
const helpMenu = mainMenu.helpMenu;
const labGroup = [
CommandIDs.about,
'faq-jupyterlab:open',
CommandIDs.launchClassic
].map(command => ({ command }));
const labGroup = [CommandIDs.about, CommandIDs.launchClassic].map(
command => ({ command })
);
helpMenu.addGroup(labGroup, 0);
const resourcesGroup = RESOURCES.map(args => ({
args,
Expand Down
2 changes: 1 addition & 1 deletion packages/inspector/src/handler.ts
Expand Up @@ -167,7 +167,7 @@ export class InspectionHandler implements IDisposable, IInspector.IInspectable {
* Handle changes to the editor state, debouncing.
*/
private _onChange(): void {
this._debouncer.invoke();
void this._debouncer.invoke();
}

private _cleared = new Signal<InspectionHandler, void>(this);
Expand Down
1 change: 0 additions & 1 deletion packages/metapackage/package.json
Expand Up @@ -54,7 +54,6 @@
"@jupyterlab/documentsearch-extension": "^1.0.0-alpha.13",
"@jupyterlab/extensionmanager": "^1.0.0-alpha.11",
"@jupyterlab/extensionmanager-extension": "^1.0.0-alpha.11",
"@jupyterlab/faq-extension": "^1.0.0-alpha.11",
"@jupyterlab/filebrowser": "^1.0.0-alpha.11",
"@jupyterlab/filebrowser-extension": "^1.0.0-alpha.11",
"@jupyterlab/fileeditor": "^1.0.0-alpha.11",
Expand Down
1 change: 0 additions & 1 deletion packages/metapackage/src/index.ts
Expand Up @@ -22,7 +22,6 @@ import '@jupyterlab/docmanager-extension';
import '@jupyterlab/docregistry';
import '@jupyterlab/extensionmanager';
import '@jupyterlab/extensionmanager-extension';
import '@jupyterlab/faq-extension';
import '@jupyterlab/filebrowser';
import '@jupyterlab/filebrowser-extension';
import '@jupyterlab/fileeditor';
Expand Down
3 changes: 0 additions & 3 deletions packages/metapackage/tsconfig.json
Expand Up @@ -75,9 +75,6 @@
{
"path": "../extensionmanager-extension"
},
{
"path": "../faq-extension"
},
{
"path": "../filebrowser"
},
Expand Down

0 comments on commit fd18d01

Please sign in to comment.