diff --git a/src/extension.ts b/src/extension.ts index 2b741ca..81354eb 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -13,11 +13,11 @@ import { registerWalkthrough } from "./commands/walkthrough"; // this method is called when your extension is activated // your extension is activated the very first time the command is executed -export function activate(context: vscode.ExtensionContext) { +export async function activate(context: vscode.ExtensionContext) { Container.context = context; - registerWhatsNew(); + await registerWhatsNew(); registerProviders(); registerGenerateTags(); registerWalkthrough();