From 9a5bf498b5c27d8ba3ef75793ca9087e3df6e6ac Mon Sep 17 00:00:00 2001 From: dvolkov Date: Mon, 8 May 2023 08:44:58 -0700 Subject: [PATCH] update --- .vscode/tasks.json | 24 +++++++++++++++++++++--- .vscode/tasks.json.old | 8 ++++++++ 2 files changed, 29 insertions(+), 3 deletions(-) create mode 100644 .vscode/tasks.json.old diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 691a714..8135f6a 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -1,8 +1,26 @@ // Sass configuration { - "version": "0.1.0", + "version": "2.0.0", "command": "node-sass", - "isShellCommand": true, - "args": ["Amen/Content/Site.scss", "Amen/Content/Site.css"] + "args": [ + "Amen/Content/Site.scss", + "Amen/Content/Site.css" + ], + "tasks": [ + { + "label": "node-sass", + "type": "shell", + "command": "node-sass", + "args": [ + "Amen/Content/Site.scss", + "Amen/Content/Site.css" + ], + "problemMatcher": [], + "group": { + "_id": "build", + "isDefault": false + } + } + ] } \ No newline at end of file diff --git a/.vscode/tasks.json.old b/.vscode/tasks.json.old new file mode 100644 index 0000000..691a714 --- /dev/null +++ b/.vscode/tasks.json.old @@ -0,0 +1,8 @@ + +// Sass configuration +{ + "version": "0.1.0", + "command": "node-sass", + "isShellCommand": true, + "args": ["Amen/Content/Site.scss", "Amen/Content/Site.css"] +} \ No newline at end of file