-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathproject.json
More file actions
78 lines (78 loc) · 1.91 KB
/
Copy pathproject.json
File metadata and controls
78 lines (78 loc) · 1.91 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
75
76
77
78
{
"name": "console-v5",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "/apps/console-v5/src",
"projectType": "application",
"tags": [],
"targets": {
"sync-changelog": {
"executor": "nx:run-commands",
"cache": false,
"options": {
"command": "node scripts/sync-changelog.mjs",
"cwd": ".",
"env": {
"QOVERY_CHANGELOG_SYNC_STRICT": "true"
}
}
},
"build": {
"executor": "@nx/vite:build",
"dependsOn": ["sync-changelog", "^build"],
"outputs": ["{options.outputPath}"],
"defaultConfiguration": "production",
"options": {
"outputPath": "dist/apps/console-v5"
},
"configurations": {
"development": {
"mode": "development"
},
"production": {
"mode": "production"
}
}
},
"serve": {
"executor": "@nx/vite:dev-server",
"defaultConfiguration": "development",
"options": {
"buildTarget": "console-v5:build"
},
"configurations": {
"development": {
"buildTarget": "console-v5:build:development",
"hmr": true
},
"production": {
"buildTarget": "console-v5:build:production",
"hmr": false
}
}
},
"preview": {
"dependsOn": ["build"],
"executor": "@nx/vite:preview-server",
"defaultConfiguration": "development",
"options": {
"buildTarget": "console-v5:build"
},
"configurations": {
"development": {
"buildTarget": "console-v5:build:development"
},
"production": {
"buildTarget": "console-v5:build:production"
}
}
},
"serve-static": {
"executor": "@nx/web:file-server",
"dependsOn": ["build"],
"options": {
"buildTarget": "console-v5:build",
"spa": true
}
}
}
}