mirror of
https://github.com/grafana/grafana.git
synced 2024-11-24 18:00:31 -06:00
36 lines
838 B
JSON
36 lines
838 B
JSON
|
{
|
||
|
"name": "grafana",
|
||
|
"$schema": "node_modules/nx/schemas/project-schema.json",
|
||
|
"projectType": "application",
|
||
|
"targets": {
|
||
|
"start": {
|
||
|
"dependsOn": [
|
||
|
"themes-generate",
|
||
|
{
|
||
|
"projects": ["@grafana-plugins/**"],
|
||
|
"target": "build"
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
"build": {
|
||
|
"dependsOn": [
|
||
|
"themes-generate",
|
||
|
{
|
||
|
"projects": ["@grafana-plugins/**"],
|
||
|
"target": "build"
|
||
|
}
|
||
|
],
|
||
|
"outputs": ["{workspaceRoot}/public/build"],
|
||
|
"cache": true
|
||
|
},
|
||
|
"themes-generate": {
|
||
|
"outputs": [
|
||
|
"{workspaceRoot}/public/sass/_variables.generated.scss",
|
||
|
"{workspaceRoot}/public/sass/_variables.dark.generated.scss",
|
||
|
"{workspaceRoot}/public/sass/_variables.light.generated.scss"
|
||
|
],
|
||
|
"cache": true
|
||
|
}
|
||
|
}
|
||
|
}
|