diff --git a/.vscode/launch.json b/.vscode/launch.json index 782e324..b3493c2 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -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" } ] -} +} \ No newline at end of file diff --git a/package.json b/package.json index b6f210c..98a8a4f 100644 --- a/package.json +++ b/package.json @@ -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", @@ -17,7 +17,7 @@ "emoticons" ], "engines": { - "vscode": "^1.45.0" + "vscode": "^1.75.0" }, "repository": { "url": "https://github.com/mattbierner/vscode-emojisense.git" @@ -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",