Remove redundant activation events (#172062)

This commit is contained in:
Joyce Er 2023-02-06 09:38:15 -08:00 committed by GitHub
parent 9020b093a6
commit affa0691f9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 7 deletions

View file

@ -10,8 +10,6 @@
},
"icon": "images/icon.png",
"activationEvents": [
"onLanguage:json",
"onLanguage:jsonc",
"onProfile",
"onProfile:github"
],

View file

@ -13,8 +13,7 @@
"icon": "icons/json.png",
"activationEvents": [
"onLanguage:json",
"onLanguage:jsonc",
"onCommand:json.clearCache"
"onLanguage:jsonc"
],
"main": "./client/out/node/jsonClientMain",
"browser": "./client/dist/browser/jsonClientMain",

View file

@ -14,9 +14,7 @@
],
"main": "./out/extension.js",
"browser": "./dist/extension.js",
"activationEvents": [
"onLanguage:search-result"
],
"activationEvents": [],
"scripts": {
"generate-grammar": "node ./syntaxes/generateTMLanguage.js",
"vscode:prepublish": "node ../../node_modules/gulp/bin/gulp.js --gulpfile ../../build/gulpfile.extensions.js compile-extension:search-result ./tsconfig.json"