From 5ab0581c66d258fee0d93d556461ac1976349d6d Mon Sep 17 00:00:00 2001 From: Jacek Sieka Date: Thu, 13 Dec 2018 11:14:21 -0600 Subject: [PATCH] vscode: add tasks --- .vscode/tasks.json | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 000000000..38f1f5efd --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,31 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "2.0.0", + "tasks": [ + { + "label": "nim-beacon-chain build", + "type": "shell", + "command": "nimble build", + "group": { + "kind": "build", + "isDefault": true + }, + "problemMatcher": [ + "$gcc" + ] + }, + { + "label": "nim-beacon-chain test", + "type": "shell", + "command": "nimble test", + "group": { + "kind": "build", + "isDefault": true + }, + "problemMatcher": [ + "$gcc" + ] + } + ] +} \ No newline at end of file