mirror of
https://github.com/velocitatem/PHANTOM.git
synced 2026-05-31 08:33:36 +00:00
37 lines
702 B
JSON
37 lines
702 B
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": "make pdf.build",
|
|
"cwd": "."
|
|
}
|
|
},
|
|
"watch": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"command": "make pdf.watch",
|
|
"cwd": "."
|
|
}
|
|
},
|
|
"clean": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"command": "make pdf.clean",
|
|
"cwd": "."
|
|
}
|
|
}
|
|
},
|
|
"tags": [
|
|
"scope:paper",
|
|
"type:latex"
|
|
]
|
|
}
|