1
0
mirror of https://github.com/mwalbeck/nextcloud-breeze-dark.git synced 2024-09-20 11:37:35 +00:00
nextcloud-breeze-dark/.vscode/tasks.json
Magnus Walbeck a58dc593c2
Rewrite core styling #133 (#163)
Complete rewrite of core styling to realign with current Nextcloud, and rely more on CSS4 variable for theming.
2020-10-06 19:12:45 +02:00

39 lines
1.0 KiB
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "create release",
"type": "shell",
"command": "./create_release.sh",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"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"
}
]
}