This might be me misunderstanding the nuances in the config. However, the command gets called every time I run npm run buildDeps
"buildServer": {
"command": "tsc --pretty --project server/tsconfig.server.json",
"clean": "if-file-deleted",
"files": [ "./server/**/*.mts", "./server/**/*.html", "./server/tsconfig.server.json" ],
"output": [ "./dist/server" ]
},
"sharedSock": {
"command": "ng build --configuration production sharedSock",
"clean": true,
"files": [ "./projects/shared-sock/src/lib/**/*.ts" ],
"output": [ "./dist/shared-sock" ]
},
"buildDeps": {
"dependencies": [ "buildServer", "sharedSock" ]
},
I tried quite a number of things, but the command for the "sharedSock" dependency gets executed every time.
It might be me misunderstanding the setup, but it should skip the command if there is no change in the files of the "sharedSock" right?
I looked at #238 which pointed me to #245, but I seem to already have taken those steps?
This might be me misunderstanding the nuances in the config. However, the command gets called every time I run
npm run buildDepsI tried quite a number of things, but the command for the
"sharedSock"dependency gets executed every time.It might be me misunderstanding the setup, but it should skip the command if there is no change in the
filesof the"sharedSock"right?I looked at #238 which pointed me to #245, but I seem to already have taken those steps?