dev script updates for scss watch

This commit is contained in:
2024-05-24 13:40:59 -05:00
parent e9fd60e619
commit 49864874fc
3 changed files with 33 additions and 12 deletions

16
.vscode/tasks.json vendored
View File

@@ -3,17 +3,21 @@
"tasks": [
{
"type": "npm",
"script": "scss",
"script": "watch-scss",
"problemMatcher": [],
"label": "npm: scss watch",
"detail": "sass --watch src/scss/application.scss public/css/application.css src/scss/eventsheet.scss:public/css/eventsheet.css"
"label": "npm: watch-scss",
"detail": "npm run watch-css",
"icon": {
"id": "eye",
"color": "terminal.ansiBlue"
}
},
{
"type": "npm",
"script": "scss",
"script": "build-css",
"problemMatcher": [],
"label": "npm: scss",
"detail": "sass src/scss/application.scss:public/css/application.css src/scss/eventsheet.scss:public/css/eventsheet.css"
"label": "npm: build-css",
"detail": "npm build-css"
}
]
}