-
-
Notifications
You must be signed in to change notification settings - Fork 393
Expand file tree
/
Copy pathproject.json
More file actions
73 lines (73 loc) · 1.67 KB
/
project.json
File metadata and controls
73 lines (73 loc) · 1.67 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
{
"name": "runtime",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "packages/runtime/src",
"projectType": "library",
"tags": ["type:pkg"],
"targets": {
"build": {
"executor": "nx:run-commands",
"outputs": ["{workspaceRoot}/packages/runtime/dist"],
"options": {
"command": "rslib build",
"cwd": "packages/runtime"
},
"dependsOn": [
{
"target": "build",
"dependencies": true
}
]
},
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": [
"packages/runtime/**/*.ts",
"packages/runtime/package.json"
]
}
},
"build-debug": {
"executor": "nx:run-commands",
"options": {
"parallel": false,
"commands": [
{
"command": "FEDERATION_DEBUG=true nx run runtime:build --skip-nx-cache",
"forwardAllArgs": false
}
]
}
},
"pre-release": {
"executor": "nx:run-commands",
"options": {
"parallel": false,
"commands": [
{
"command": "nx run runtime:test",
"forwardAllArgs": false
},
{
"command": "nx run runtime:build",
"forwardAllArgs": false
}
]
}
},
"test": {
"executor": "nx:run-commands",
"options": {
"parallel": false,
"commands": [
{
"command": "vitest run -u -c packages/runtime/vitest.config.ts",
"forwardAllArgs": false
}
]
}
}
}
}