AFFiNE/plugins/copilot/project.json

27 lines
616 B
JSON
Raw Normal View History

2023-07-30 21:10:45 +03:00
{
"name": "@affine/copilot-plugin",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
2023-08-06 06:59:14 +03:00
"namedInputs": {
"default": [
"{projectRoot}/**/*",
"{workspaceRoot}/packages/plugin-cli/src/**/*",
"sharedGlobals"
]
},
2023-08-04 02:05:46 +03:00
"targets": {
"build": {
"executor": "nx:run-script",
"options": {
"script": "build"
},
"dependsOn": ["^build"],
2023-08-06 06:59:14 +03:00
"inputs": ["default"],
2023-08-04 02:05:46 +03:00
"outputs": [
"{workspaceRoot}/apps/core/public/plugins/copilot",
"{workspaceRoot}/apps/electron/dist/plugins/copilot"
]
}
2023-08-06 06:59:14 +03:00
},
"tags": ["plugin"]
2023-07-30 21:10:45 +03:00
}