index.js 466 B

1234567891011121314151617
  1. // Copyright (c) Jupyter Development Team.
  2. // Distributed under the terms of the Modified BSD License.
  3. import { ILauncher } from '@jupyterlab/launcher';
  4. const plugin = {
  5. id: 'test-hyphens',
  6. requires: [ILauncher],
  7. autoStart: true,
  8. activate: function (application, launcher) {
  9. // eslint-disable-next-line no-console
  10. console.log('test-hyphens extension activated', launcher);
  11. window.commands = application.commands;
  12. }
  13. };
  14. export default plugin;