Skip to content

Commit 966b2ac

Browse files
committed
Step 1 - Enhance build reliability: Pre-build plugin before serve-test and run from dist directory.
1 parent 12a80be commit 966b2ac

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

apps/host-application/project.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,16 @@
55
"prefix": "app",
66
"sourceRoot": "apps/host-application/src",
77
"tags": [],
8+
"implicitDependencies": ["nx-angular-mf"],
89
"targets": {
910
"build-test": {
10-
"executor": "@klerick/nx-angular-mf:build",
11+
"dependsOn": ["^build"],
12+
"executor": "./dist/libs/nx-angular-mf:build",
1113
"outputs": ["{options.outputPath}"]
1214
},
1315
"serve-test": {
14-
"executor": "@klerick/nx-angular-mf:serve",
16+
"dependsOn": ["^build"],
17+
"executor": "./dist/libs/nx-angular-mf:serve",
1518
"outputs": ["{options.outputPath}"]
1619
},
1720
"build": {

0 commit comments

Comments
 (0)