-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathproject.json
More file actions
46 lines (46 loc) · 1.06 KB
/
project.json
File metadata and controls
46 lines (46 loc) · 1.06 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "examples-plugins",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "examples/plugins/src",
"projectType": "library",
"targets": {
"build": {},
"lint": {},
"unit-test": {},
"int-test": {},
"run-collect": {
"command": "npx dist/packages/cli collect --config=examples/plugins/code-pushup.config.ts --persist.format=md",
"dependsOn": [
"build",
"^build",
{
"projects": ["cli"],
"target": "build"
}
]
},
"run-print-config": {
"command": "npx dist/packages/cli print-config --config=examples/plugins/code-pushup.config.ts",
"dependsOn": [
"build",
"^build",
{
"projects": ["cli"],
"target": "build"
}
]
},
"run-help": {
"command": "npx dist/packages/cli help",
"dependsOn": [
"build",
"^build",
{
"projects": ["cli"],
"target": "build"
}
]
}
},
"tags": ["scope:internal", "type:feature"]
}