We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89041c8 commit 98aa630Copy full SHA for 98aa630
src/ExampleHostApplication.ts
@@ -13,12 +13,16 @@ import {
13
*/
14
export async function exampleHostApplication(): Promise<void> {
15
const pluginRepository = new UrlListPluginRepository(
16
- new Set(["file:///Users/nick/projects/flowscripter/example-plugin/bundle/index.js"]),
+ new Set([
17
+ "file:///Users/nick/projects/flowscripter/example-plugin/bundle/index.js",
18
+ ]),
19
);
20
21
const pluginManager = new DefaultPluginManager([pluginRepository]);
22
- console.info(`Registering extensions for ${EXTENSION_POINT_1} extension point`);
23
+ console.info(
24
+ `Registering extensions for ${EXTENSION_POINT_1} extension point`,
25
+ );
26
27
await pluginManager.registerExtensions(EXTENSION_POINT_1);
28
0 commit comments