mirror of
https://github.com/mwalbeck/nextcloud-breeze-dark.git
synced 2024-11-08 09:26:52 +00:00
Magnus Walbeck
a58dc593c2
Complete rewrite of core styling to realign with current Nextcloud, and rely more on CSS4 variable for theming.
39 lines
1.0 KiB
JSON
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"
|
|
}
|
|
]
|
|
}
|