Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Avoid usage of star activation #981

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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