diff --git a/CHANGELOG.md b/CHANGELOG.md index e27be36..e963ee9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,12 @@ # Change Log +## 1.7.4 + +### ✨ New + +- Add support for Stream Deck VSCode extension in templated plugins. + ## 1.7.3 ### ♻️ Update diff --git a/template/.vscode/launch.json b/template/.vscode/launch.json index e34b2cf..5a10bca 100644 --- a/template/.vscode/launch.json +++ b/template/.vscode/launch.json @@ -8,13 +8,16 @@ "name": "Attach to Plugin", "type": "node", "request": "attach", - "processId": "${command:PickProcess}", "outFiles": [ "${workspaceFolder}/bin/**/*.js" ], "resolveSourceMapLocations": [ "${workspaceFolder}/**" - ] + ], + "streamDeckPlugin": true, + "timeout": 30000, + "restart": true, + "preLaunchTask": "watch" } ] } \ No newline at end of file diff --git a/template/.vscode/tasks.json b/template/.vscode/tasks.json new file mode 100644 index 0000000..a7c0cca --- /dev/null +++ b/template/.vscode/tasks.json @@ -0,0 +1,26 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "watch", + "type": "process", + "command": "npm", + "args": ["run", "watch"], + "isBackground": true, + "problemMatcher": [ + { + "owner": "watch", + "fileLocation": "relative", + "pattern": { + "regexp": "^$" + }, + "background": { + "activeOnStart": true, + "beginsPattern": ".", + "endsPattern": "waiting for changes" + } + } + ] + } + ] +} \ No newline at end of file