-
Notifications
You must be signed in to change notification settings - Fork 2.4k
/
project.json
40 lines (40 loc) · 1001 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
35
36
37
38
39
40
{
"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"
}
}
}