This commit is contained in:
dvolkov 2023-05-08 08:44:58 -07:00
parent 3675a28791
commit 9a5bf498b5
2 changed files with 29 additions and 3 deletions

24
.vscode/tasks.json vendored
View File

@ -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
}
}
]
}

8
.vscode/tasks.json.old vendored Normal file
View File

@ -0,0 +1,8 @@
// Sass configuration
{
"version": "0.1.0",
"command": "node-sass",
"isShellCommand": true,
"args": ["Amen/Content/Site.scss", "Amen/Content/Site.css"]
}