44 lines
934 B
JSON
44 lines
934 B
JSON
{
|
|
"name": "cron_scheduler",
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
"projectType": "library",
|
|
"sourceRoot": "libs/cron_scheduler/src",
|
|
"targets": {
|
|
"build": {
|
|
"executor": "@monodon/rust:check",
|
|
"outputs": [
|
|
"{options.target-dir}"
|
|
],
|
|
"options": {
|
|
"target-dir": "dist/target/cron_scheduler"
|
|
}
|
|
},
|
|
"test": {
|
|
"cache": true,
|
|
"executor": "@monodon/rust:test",
|
|
"outputs": [
|
|
"{options.target-dir}"
|
|
],
|
|
"options": {
|
|
"target-dir": "dist/target/cron_scheduler"
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"release": true
|
|
}
|
|
}
|
|
},
|
|
"lint": {
|
|
"cache": true,
|
|
"executor": "@monodon/rust:lint",
|
|
"outputs": [
|
|
"{options.target-dir}"
|
|
],
|
|
"options": {
|
|
"target-dir": "dist/target/cron_scheduler"
|
|
}
|
|
}
|
|
},
|
|
"tags": []
|
|
}
|