0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2024-12-30 22:34:01 -05:00

Increased parallelisation of Nx processes

refs https://nx.dev/recipes/running-tasks/run-tasks-in-parallel

- CI has 4 cores and our local machines are also very powerful, so we
  can just set the default parallelisation to higher than is currently
  set to make things run quicker
This commit is contained in:
Daniel Lockyer 2024-09-25 14:28:22 +02:00 committed by Daniel Lockyer
parent b6e5c0fe68
commit 9bcca5122a

View file

@ -3,6 +3,7 @@
"namedInputs": {
"default": ["{projectRoot}/**/*", "{workspaceRoot}/ghost/tsconfig.json"]
},
"parallel": 4,
"targetDefaults": {
"build": {
"dependsOn": ["^build"],