From d42606d18f50c50164a6bd914b7a59a29bd1d4c1 Mon Sep 17 00:00:00 2001 From: Max Desiatov Date: Sat, 19 Dec 2020 15:19:12 +0000 Subject: [PATCH] Add more debug/release tasks to `tasks.json` --- .vscode/tasks.json | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index f7ece4b..7568a1c 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -33,6 +33,11 @@ "type": "shell", "command": "swift build && cd TestApp && ../.build/debug/carton dev" }, + { + "label": "build and run dev release", + "type": "shell", + "command": "swift build && cd TestApp && ../.build/debug/carton dev --release" + }, { "label": "build release and run dev", "type": "shell", @@ -88,6 +93,11 @@ "type": "shell", "command": "swift build && cd TestApp && ../.build/debug/carton bundle" }, + { + "label": "build and run bundle debug", + "type": "shell", + "command": "swift build && cd TestApp && ../.build/debug/carton bundle --debug" + }, { "label": "build and run bundle, log to file", "type": "shell",