Skip to content

Commit

Permalink
Bump min VS Code version and update launch json
Browse files Browse the repository at this point in the history
  • Loading branch information
mattbierner committed Jun 6, 2023
1 parent f7d2b11 commit 5527c52
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 24 deletions.
38 changes: 21 additions & 17 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,30 +1,34 @@
// A launch configuration that compiles the extension and then opens it inside a new window
{
"version": "0.1.0",
"version": "0.2.0",
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ],
"args": [
"--extensionDevelopmentPath=${workspaceRoot}"
],
"sourceMaps": true,
"outFiles": [ "${workspaceRoot}/out/src/**/*.js" ],
"preLaunchTask": "watch"
"outFiles": [
"${workspaceRoot}/dist/**/*.js"
],
"preLaunchTask": "watch",
},
{
"name": "Run Web Extension in VS Code",
"type": "pwa-extensionHost",
"debugWebWorkerHost": true,
"request": "launch",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionDevelopmentKind=web"
],
"outFiles": [
"${workspaceFolder}/dist/web/**/*.js"
],
"preLaunchTask": "npm: watch-web"
"name": "Run Web Extension in VS Code",
"type": "extensionHost",
"debugWebWorkerHost": true,
"request": "launch",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionDevelopmentKind=web"
],
"outFiles": [
"${workspaceFolder}/dist/web/**/*.js"
],
"preLaunchTask": "npm: watch-web"
}
]
}
}
10 changes: 3 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "emojisense",
"displayName": ":emojisense:",
"description": "Adds suggestions and autocomplete for emoji",
"version": "0.10.1",
"version": "0.10.0",
"publisher": "bierner",
"icon": "media/icon.png",
"license": "MIT",
Expand All @@ -17,7 +17,7 @@
"emoticons"
],
"engines": {
"vscode": "^1.45.0"
"vscode": "^1.75.0"
},
"repository": {
"url": "https://github.com/mattbierner/vscode-emojisense.git"
Expand All @@ -29,11 +29,7 @@
"Other"
],
"activationEvents": [
"onStartupFinished",
"onCommand:emojisense.quickEmoji",
"onCommand:emojisense.quickEmojitext",
"onCommand:emojisense.quickEmojiTerminal",
"onCommand:emojisense.quickEmojitextTerminal"
"onStartupFinished"
],
"main": "./dist/extension",
"browser": "./dist/web/extension.js",
Expand Down

0 comments on commit 5527c52

Please sign in to comment.