mirror of
https://github.com/mwalbeck/nextcloud-breeze-dark.git
synced 2025-04-29 06:50:02 +00:00
Complete rewrite of core styling to realign with current Nextcloud, and rely more on CSS4 variable for theming.
38 lines
1 KiB
JSON
38 lines
1 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"
|
|
}
|
|
]
|
|
}
|