forked from takram-design-engineering/three-geospatial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.json
More file actions
74 lines (74 loc) · 2.2 KB
/
project.json
File metadata and controls
74 lines (74 loc) · 2.2 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
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
{
"name": "@three-geospatial/source",
"$schema": "node_modules/nx/schemas/project-schema.json",
"targets": {
"lint": {
"executor": "nx:run-commands",
"options": {
"command": "nx run-many --target=lint --parallel=8 --exclude=@three-geospatial/source --outputStyle stream"
}
},
"format-all": {
"executor": "nx:run-commands",
"options": {
"command": "nx format:write --all"
}
},
"test": {
"executor": "nx:run-commands",
"options": {
"command": "nx run-many --target=test --args=--passWithNoTests --parallel=8 --exclude=@three-geospatial/source --outputStyle stream"
}
},
"build": {
"executor": "nx:run-commands",
"options": {
"command": "nx run-many --target=build --parallel=8 --exclude=@three-geospatial/source --configuration=production --outputStyle stream"
}
},
"build-apps": {
"executor": "nx:run-commands",
"options": {
"command": "nx run-many --target=build --parallel=8 --projects=tag:type:app --configuration=production --outputStyle stream"
}
},
"build-libs": {
"executor": "nx:run-commands",
"options": {
"command": "nx run-many --target=build --parallel=8 --projects=tag:type:lib --configuration=production --outputStyle stream"
}
},
"build-storybook": {
"executor": "nx:run-commands",
"options": {
"command": "nx build-storybook storybook --configuration=production"
}
},
"build-storybook-webgpu": {
"executor": "nx:run-commands",
"options": {
"command": "nx build-storybook storybook-webgpu --configuration=production"
}
},
"storybook": {
"executor": "nx:run-commands",
"options": {
"command": "nx storybook storybook --port=4400 --no-open"
}
},
"storybook-webgpu": {
"executor": "nx:run-commands",
"options": {
"command": "nx storybook storybook-webgpu --port=4400 --no-open"
}
},
"local-registry": {
"executor": "@nx/js:verdaccio",
"options": {
"port": 4873,
"config": ".verdaccio/config.yml",
"storage": "tmp/local-registry/storage"
}
}
}
}