mirror of
https://github.com/velocitatem/PHANTOM.git
synced 2026-05-31 16:43:36 +00:00
54 lines
1.1 KiB
JSON
54 lines
1.1 KiB
JSON
{
|
|
"$schema": "../node_modules/nx/schemas/project-schema.json",
|
|
"name": "paper",
|
|
"projectType": "application",
|
|
"sourceRoot": "paper/src",
|
|
"targets": {
|
|
"build": {
|
|
"executor": "nx:run-commands",
|
|
"outputs": [
|
|
"{projectRoot}/build"
|
|
],
|
|
"options": {
|
|
"command": "bash scripts/nx_paper.sh build",
|
|
"cwd": "."
|
|
}
|
|
},
|
|
"watch": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"command": "bash scripts/nx_paper.sh watch",
|
|
"cwd": "."
|
|
}
|
|
},
|
|
"clean": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"command": "bash scripts/nx_paper.sh clean",
|
|
"cwd": "."
|
|
}
|
|
},
|
|
"wordcount": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"command": "bash scripts/nx_paper.sh wordcount",
|
|
"cwd": "."
|
|
}
|
|
},
|
|
"build-arxiv": {
|
|
"executor": "nx:run-commands",
|
|
"outputs": [
|
|
"{projectRoot}/build/main-arxiv.pdf"
|
|
],
|
|
"options": {
|
|
"command": "bash scripts/nx_paper.sh build-arxiv",
|
|
"cwd": "."
|
|
}
|
|
}
|
|
},
|
|
"tags": [
|
|
"scope:paper",
|
|
"type:latex"
|
|
]
|
|
}
|