From 9d8008488481c0d635561e0ba6ecf066a07ce4b2 Mon Sep 17 00:00:00 2001 From: ludeeus Date: Mon, 27 Mar 2023 17:48:30 +0000 Subject: [PATCH] Fix vscode tasks --- .vscode/tasks.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 7a872b87d91..005ad088aad 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -4,7 +4,7 @@ { "label": "Generate", "type": "shell", - "command": "bundle exec rake generate", + "command": "npm run build", "group": { "kind": "build", "isDefault": true @@ -13,7 +13,7 @@ { "label": "Preview", "type": "shell", - "command": "bundle exec rake preview", + "command": "npm run dev", "group": { "kind": "test", "isDefault": true,