Skip to content

Commit

Permalink
Apply nx migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
hugo-vrijswijk authored and renovate[bot] committed Oct 31, 2023
1 parent 8e59e0a commit 93cc0b5
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 13 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,5 @@ _site/
pom.xml.versionsBackup
packages/*/mvn/resources/
.scala-build/

.nx/cache
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,5 @@ packages/metrics-scala/README.md
report.json

testResources

/.nx/cache
23 changes: 10 additions & 13 deletions nx.json
Original file line number Diff line number Diff line change
@@ -1,34 +1,31 @@
{
"extends": "nx/presets/npm.json",
"tasksRunnerOptions": {
"default": {
"runner": "nx/tasks-runners/default",
"options": {
"cacheableOperations": ["build", "test", "stryker", "generate", "lint"]
}
}
},
"targetDefaults": {
"build:tsc": {
"dependsOn": ["^generate"],
"outputs": ["{projectRoot}/packages/*/dist", "{projectRoot}/packages/*/dist-test"]
},
"build": {
"dependsOn": ["^build", "root:build:tsc", "generate"],
"outputs": ["{projectRoot}/dist", "{projectRoot}/dist-test", "{projectRoot}/target"]
"outputs": ["{projectRoot}/dist", "{projectRoot}/dist-test", "{projectRoot}/target"],
"cache": true
},
"generate": {
"outputs": ["{projectRoot}/src-generated"]
"outputs": ["{projectRoot}/src-generated"],
"cache": true
},
"test": {
"dependsOn": ["generate", "build", "root:build:tsc"]
"dependsOn": ["generate", "build", "root:build:tsc"],
"cache": true
},
"stryker": {
"dependsOn": ["^build", "root:build:tsc"],
"outputs": ["{projectRoot}/reports", "{projectRoot}/target-stryker4s-report-*/"]
"outputs": ["{projectRoot}/reports", "{projectRoot}/target-stryker4s-report-*/"],
"cache": true
},
"lint": {
"dependsOn": ["build", "root:build:tsc"]
"dependsOn": ["build", "root:build:tsc"],
"cache": true
}
}
}

0 comments on commit 93cc0b5

Please sign in to comment.