mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-12 16:23:56 +03:00
24 lines
633 B
JSON
24 lines
633 B
JSON
{
|
|
"name": "@affine/server-native",
|
|
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
|
|
"projectType": "application",
|
|
"root": "packages/backend/native",
|
|
"sourceRoot": "packages/backend/native/src",
|
|
"targets": {
|
|
"build": {
|
|
"executor": "nx:run-script",
|
|
"dependsOn": ["^build"],
|
|
"options": {
|
|
"script": "build"
|
|
},
|
|
"inputs": [
|
|
{ "runtime": "rustc --version" },
|
|
{ "runtime": "node -v" },
|
|
{ "runtime": "clang --version" },
|
|
{ "runtime": "cargo tree" }
|
|
],
|
|
"outputs": ["{projectRoot}/*.node", "{workspaceRoot}/*.node"]
|
|
}
|
|
}
|
|
}
|