Skip to content

Commit

Permalink
build: update to Nx 17
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremylvln committed Oct 24, 2023
1 parent 682edb8 commit 5841099
Show file tree
Hide file tree
Showing 6 changed files with 160 additions and 617 deletions.
3 changes: 2 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
.gradle/
.husky/
.idea/
.vscod/
.nx/
.vscode/
build/
coverage/
dist/
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -277,3 +277,5 @@ replay_pid*
.DS_Store
scripts/.tools/
*.sarif

.nx/cache
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@

/dist
/coverage

/.nx/cache
21 changes: 15 additions & 6 deletions nx.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,21 @@
{
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"extends": "nx/presets/npm.json",
"tasksRunnerOptions": {
"default": {
"runner": "nx/tasks-runners/default",
"options": {
"cacheableOperations": ["build", "lint", "test", "e2e", "buf"]
}
"targetDefaults": {
"build": {
"cache": true
},
"lint": {
"cache": true
},
"test": {
"cache": true
},
"e2e": {
"cache": true
},
"buf": {
"cache": true
}
},
"namedInputs": {
Expand Down
Loading

0 comments on commit 5841099

Please sign in to comment.