From 9f1e753e13b02e82d7f2c4a8fd46ba446a916899 Mon Sep 17 00:00:00 2001 From: Merijn Hendriks Date: Sun, 28 Apr 2024 02:14:35 +0200 Subject: [PATCH] Move tasks into workspace --- .vscode/tasks.json | 21 --------------------- Fika-Server.code-workspace | 21 +++++++++++++++++++++ 2 files changed, 21 insertions(+), 21 deletions(-) delete mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index 1394bb72..00000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "npm: install", - "type": "shell", - "command": "npm install", - }, - { - "label": "npm: build", - "type": "shell", - "command": "npm run build", - "dependsOrder": "sequence", - "dependsOn": "npm: install", - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} \ No newline at end of file diff --git a/Fika-Server.code-workspace b/Fika-Server.code-workspace index 9ed42949..a22bf12c 100644 --- a/Fika-Server.code-workspace +++ b/Fika-Server.code-workspace @@ -4,6 +4,27 @@ "path": "." } ], + "tasks": { + "version": "2.0.0", + "tasks": [ + { + "label": "npm: install", + "type": "shell", + "command": "npm install", + }, + { + "label": "npm: build", + "type": "shell", + "command": "npm run build", + "dependsOrder": "sequence", + "dependsOn": "npm: install", + "group": { + "kind": "build", + "isDefault": true + } + } + ] + }, "settings": { "window.title": "Fika Server" },