Skip to content

Commit

Permalink
chore: activation process fine tuning
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-gilin committed Aug 7, 2024
1 parent 891fed8 commit 548dbec
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .changeset/unlucky-items-fly.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"vscode-ui5-language-assistant": patch
"@ui5-language-assistant/vscode-ui5-language-assistant-bas-ext": patch
---

activation process fine tuning
2 changes: 1 addition & 1 deletion packages/vscode-ui5-language-assistant/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"main": "./lib/src/extension",
"activationEvents": [
"onFileSystem:manifest-schema",
"*"
"onLanguage:xml"
],
"contributes": {
"semanticTokenScopes": [
Expand Down
2 changes: 1 addition & 1 deletion packages/vscode-ui5-language-assistant/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ async function init(context: ExtensionContext): Promise<void> {

export async function activate(context: ExtensionContext): Promise<void> {
// complete initialization task asynchronously
setTimeout(() => void init(context), 0);
await init(context);

// register semantic token provider
context.subscriptions.push(
Expand Down

0 comments on commit 548dbec

Please sign in to comment.