Skip to content

Commit

Permalink
Avoid usage of star activation
Browse files Browse the repository at this point in the history
see https://code.visualstudio.com/api/references/activation-events#Start-up

using `onStartupFinished` which was introduced in 1.46
https://code.visualstudio.com/updates/v1_46#_onstartupfinished-activation-event

fixes microsoft#762

Signed-off-by: Aurélien Pupier <apupier@redhat.com>
  • Loading branch information
apupier committed Mar 7, 2024
1 parent 297705f commit 2195908
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion basic-multi-root-sample/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"Other"
],
"activationEvents": [
"*"
"onStartupFinished"
],
"main": "./out/src/extension",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion codelens-sample/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"Other"
],
"activationEvents": [
"*"
"onStartupFinished"
],
"main": "./out/extension",
"contributes": {
Expand Down
2 changes: 1 addition & 1 deletion comment-sample/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"Other"
],
"activationEvents": [
"*"
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
Expand Down
2 changes: 1 addition & 1 deletion completions-sample/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"Other"
],
"activationEvents": [
"*"
"onStartupFinished"
],
"main": "./out/extension.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion decorator-sample/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
2 changes: 1 addition & 1 deletion diagnostic-related-information-sample/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"Other"
],
"activationEvents": [
"*"
"onStartupFinished"
],
"main": "./out/extension.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion inline-completions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"Other"
],
"activationEvents": [
"*"
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
Expand Down
2 changes: 1 addition & 1 deletion progress-sample/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"Other"
],
"activationEvents": [
"*"
onStartupFinished
],
"contributes": {
"commands": [
Expand Down
2 changes: 1 addition & 1 deletion statusbar-sample/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"Other"
],
"activationEvents": [
"*"
"onStartupFinished"
],
"main": "./out/extension.js",
"scripts": {
Expand Down

0 comments on commit 2195908

Please sign in to comment.