From f8f63c4281322d08e8f0bf4791d88a4aa7e9b4cc Mon Sep 17 00:00:00 2001 From: lucas Date: Wed, 18 Dec 2024 12:44:12 +0000 Subject: [PATCH 1/2] add spotlight task --- .vscode/tasks.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000000..ce7ef58d14 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,18 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "Run Spotlight", + "type": "shell", + "command": "npx @spotlightjs/spotlight", + "presentation": { + "reveal": "always", + "panel": "new" + }, + "group": { + "kind": "none", + "isDefault": true + } + } + ] +} From d0a73acdc28d86cb9d8d9383f18d49f681ee8a46 Mon Sep 17 00:00:00 2001 From: lucas Date: Wed, 18 Dec 2024 12:45:53 +0000 Subject: [PATCH 2/2] set build kind --- .vscode/tasks.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index ce7ef58d14..8e1018029b 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -10,7 +10,7 @@ "panel": "new" }, "group": { - "kind": "none", + "kind": "build", "isDefault": true } }