implementing nx management for the framework

This commit is contained in:
2026-03-08 13:54:16 +01:00
parent cc24ac72f7
commit 17c128cbc0
11 changed files with 431 additions and 0 deletions

36
paper/project.json Normal file
View File

@@ -0,0 +1,36 @@
{
"$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"
]
}