Skip to content

Commit

Permalink
wamr-ide/VSCode-Extension: stop using "*" activation event
Browse files Browse the repository at this point in the history
Because "vsce package" complains:
```
 WARNING  Using '*' activation is usually a bad idea as it impacts performance.
More info: https://code.visualstudio.com/api/references/activation-events#Start-up
```
  • Loading branch information
yamt committed Aug 4, 2022
1 parent 212d7d3 commit b945906
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test-tools/wamr-ide/VSCode-Extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"Other"
],
"activationEvents": [
"*"
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
Expand Down

0 comments on commit b945906

Please sign in to comment.