Nx: fixes caching issues (#103443)

pull/103394/head^2
Hugo Häggmark 2 months ago committed by GitHub
parent ef2705f189
commit 2c0255a72e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 3
      .prettierignore
  2. 14
      nx.json

@ -36,3 +36,6 @@ public/mockServiceWorker.js
# Crowdin files
public/locales/**/*.json
/.nx/cache
/.nx/workspace-data

@ -1,15 +1,11 @@
{
"tasksRunnerOptions": {
"default": {
"runner": "nx/tasks-runners/default",
"options": {
"cacheableOperations": ["build", "generate"]
}
}
},
"targetDefaults": {
"build": {
"outputs": ["{projectRoot}/dist"]
"outputs": ["{projectRoot}/dist"],
"cache": true
},
"generate": {
"cache": true
}
},
"defaultBase": "main"

Loading…
Cancel
Save