forked from push-based/nx-verdaccio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.json
34 lines (34 loc) · 884 Bytes
/
project.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "workspace-source",
"$schema": "node_modules/nx/schemas/project-schema.json",
"includedScripts": [],
"// targets": "to see all targets run: nx show project workspace-source --web",
"targets": {
"show-project": {
"executor": "nx:run-commands",
"options": {
"command": "tsx --tsconfig=./tooling/bin/tsconfig.bin.json ./tooling/bin/nx-show-project.ts"
}
},
"code-pushup": {
"executor": "nx:run-commands",
"options": {
"commands": [
{
"command": "npx code-pushup"
}
]
}
},
"update-benchmark": {
"executor": "nx:run-commands",
"options": {
"commands": [
{
"command": "npx code-pushup collect --persist.outputDir=benchmarks --persist.filename=benchmark --persist.format=md"
}
]
}
}
}
}