-
-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathproject.json
More file actions
23 lines (23 loc) · 665 Bytes
/
project.json
File metadata and controls
23 lines (23 loc) · 665 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "nxrocks",
"$schema": "node_modules/nx/schemas/project-schema.json",
"targets": {
"local-registry": {
"executor": "@nx/js:verdaccio",
"options": {
"port": 4873,
"listenAddress": "0.0.0.0",
"config": ".verdaccio/config.yml",
"storage": "tmp/local-registry/storage"
}
},
"populate-local-registry": {
"cache": true,
"parallelism": false,
"inputs": ["production"],
"dependsOn": ["build"],
"command": "ts-node -P ./tools/tsconfig.tools.json ./tools/scripts/populate-local-registry.ts",
"outputs": ["{workspaceRoot}/tmp/local-registry/storage"]
}
}
}