• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

visgl / deck.gl / 13272317714

11 Feb 2025 08:55PM CUT coverage: 91.642%. Remained the same
13272317714

Pull #9423

github

web-flow
Merge 32c1567db into 2b8cc424c
Pull Request #9423: chore(deps): bump github/codeql-action from 2.2.4 to 3.28.9

6692 of 7326 branches covered (91.35%)

Branch coverage included in aggregate %.

54097 of 59007 relevant lines covered (91.68%)

14875.63 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/modules/jupyter-widget/src/plugin.js
1
// deck.gl
×
2
// SPDX-License-Identifier: MIT
×
3
// Copyright (c) vis.gl contributors
×
4

×
5
/**
×
6
 * Plugin boilerplate required for JupyterLab
×
7
 * See:
×
8
 * https://github.com/jupyter-widgets/widget-ts-cookiecutter/blob/51e9fed8687e3b9cf1ed2fd307b7675e864f89ae/%7B%7Bcookiecutter.github_project_name%7D%7D/src/plugin.ts
×
9
 */
×
10
import {IJupyterWidgetRegistry} from '@jupyter-widgets/base';
×
11
// eslint-disable-next-line import/no-unresolved
×
12
import * as widgetExports from '../dist/index';
×
13

×
14
const EXTENSION_ID = '@deck.gl/jupyter-widget:plugin';
×
15

×
16
const widgetPlugin = {
×
17
  id: EXTENSION_ID,
×
18
  requires: [IJupyterWidgetRegistry],
×
19
  activate: activateWidgetExtension,
×
20
  autoStart: true
×
21
};
×
22

×
23
export default widgetPlugin;
×
24
function activateWidgetExtension(app, registry) {
×
25
  registry.registerWidget({
×
26
    name: widgetExports.MODULE_NAME,
×
27
    version: widgetExports.MODULE_VERSION,
×
28
    exports: widgetExports
×
29
  });
×
30
}
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc