AFFiNE/apps/electron/project.json

25 lines
529 B
JSON
Raw Normal View History

2023-06-30 20:17:31 +03:00
{
"name": "@affine/electron",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"projectType": "application",
"root": "apps/electron",
"sourceRoot": "apps/electron/src",
"targets": {
"build": {
"executor": "nx:run-script",
2023-08-04 02:05:46 +03:00
"dependsOn": [
{
"projects": ["tag:plugin"],
"target": "build",
"params": "ignore"
},
"^build"
],
2023-06-30 20:17:31 +03:00
"options": {
"script": "build"
},
"outputs": ["{projectRoot}/dist"]
}
}
}