mirror of
https://github.com/mwalbeck/nextcloud-breeze-dark.git
synced 2024-11-05 08:17:07 +00:00
29 lines
767 B
JSON
29 lines
767 B
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"type": "npm",
|
|
"script": "lint:scss",
|
|
"problemMatcher": [],
|
|
"label": "npm: lint:scss",
|
|
"detail": "stylelint css/"
|
|
},
|
|
{
|
|
"type": "npm",
|
|
"script": "prettier",
|
|
"problemMatcher": [],
|
|
"label": "npm: prettier",
|
|
"detail": "prettier -c css/ js/"
|
|
},
|
|
{
|
|
"type": "npm",
|
|
"script": "install",
|
|
"problemMatcher": [],
|
|
"label": "npm: install",
|
|
"detail": "install dependencies from package"
|
|
}
|
|
]
|
|
}
|