From 0740a71446abe5227ee44b56301806de3c31046d Mon Sep 17 00:00:00 2001 From: Can Date: Wed, 11 Dec 2024 21:46:50 +0100 Subject: Initial commit --- .vscode/tasks.json | 78 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 .vscode/tasks.json (limited to '.vscode/tasks.json') diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..7b4112f --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,78 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "Run Effekt Main", + "type": "shell", + "command": "effekt", + "args": [ + "src/main.effekt" + ], + "group": { + "kind": "build", + "isDefault": true + }, + "presentation": { + "reveal": "always", + "panel": "new" + }, + "problemMatcher": [] + }, + { + "label": "Run Effekt Tests", + "type": "shell", + "command": "effekt", + "args": [ + "src/test.effekt" + ], + "group": "test", + "presentation": { + "reveal": "always", + "panel": "new" + }, + "problemMatcher": [] + }, + { + "label": "Nix Run", + "type": "shell", + "command": "nix", + "args": [ + "run" + ], + "group": "none", + "presentation": { + "reveal": "always", + "panel": "new" + }, + "problemMatcher": [] + }, + { + "label": "Nix Build", + "type": "shell", + "command": "nix", + "args": [ + "build" + ], + "group": "build", + "presentation": { + "reveal": "always", + "panel": "new" + }, + "problemMatcher": [] + }, + { + "label": "Nix Develop Shell", + "type": "shell", + "command": "nix", + "args": [ + "develop" + ], + "group": "none", + "presentation": { + "reveal": "always", + "panel": "new" + }, + "problemMatcher": [] + } + ] +} -- cgit v1.2.3