-
Notifications
You must be signed in to change notification settings - Fork 2.4k
/
Copy pathproject.json
75 lines (75 loc) · 2.15 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@nx/nx-source",
"$schema": "node_modules/nx/schemas/project-schema.json",
"targets": {
"local-registry": {
"executor": "@nx/js:verdaccio",
"options": {
"port": 4873,
"config": ".verdaccio/config.yml",
"storage": "build/local-registry/storage"
}
},
"populate-local-registry-storage": {
"cache": true,
"inputs": [
{
"input": "production",
"projects": ["tag:npm:public"]
}
],
"dependsOn": [
{
"target": "build",
"projects": ["tag:npm:public"]
}
],
"command": "node ./scripts/local-registry/run-populate-storage.mjs",
"outputs": ["{workspaceRoot}/build/local-registry/storage"]
},
"nx-release": {
"dependsOn": [
{
"target": "build",
"projects": ["tag:npm:public"]
}
],
"command": "ts-node -P ./scripts/tsconfig.release.json ./scripts/nx-release"
},
"documentation": {
"executor": "nx:run-commands",
"options": {
"commands": [
"ts-node -P scripts/tsconfig.scripts.json ./scripts/documentation/generators/main.ts",
"pnpm check-documentation-map"
],
"parallel": false
},
"cache": true,
"inputs": [
"{workspaceRoot}/packages/**",
"{workspaceRoot}/docs/**",
"{workspaceRoot}/scripts/documentation/**",
"!{workspaceRoot}/docs/external-generated",
"!{workspaceRoot}/docs/generated",
"!{workspaceRoot}/packages/**/*.spec.ts",
"!{workspaceRoot}/packages/**/project.json",
"!{workspaceRoot}/packages/**/tsconfig.json",
"!{workspaceRoot}/packages/**/tsconfig.lib.json",
"!{workspaceRoot}/packages/**/tsconfig.spec.json",
"!{workspaceRoot}/packages/**/jest.config.{ts,js}",
"!{workspaceRoot}/packages/**/.eslintrc.json"
],
"dependsOn": [
{
"target": "build",
"projects": ["devkit", "typedoc-theme"]
}
],
"outputs": [
"{workspaceRoot}/docs/external-generated",
"{workspaceRoot}/docs/generated"
]
}
}
}