Skip to content

Commit

Permalink
feat: initial support for nx 17
Browse files Browse the repository at this point in the history
  • Loading branch information
gperdomor committed Oct 27, 2023
1 parent 8a60401 commit 1aa2081
Show file tree
Hide file tree
Showing 20 changed files with 476 additions and 548 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,5 @@ testem.log
.DS_Store
Thumbs.db

.env
.env
.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
/tmp

/.nx/cache
24 changes: 11 additions & 13 deletions nx.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,21 @@
{
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"tasksRunnerOptions": {
"default": {
"runner": "nx-cloud",
"options": {
"cacheableOperations": ["build", "lint", "test", "e2e"],
"accessToken": "NWQ5YjFmMDAtZGE0Yi00N2FjLWJhODktZTYzMDI2ZGIyNzEzfHJlYWQ="
}
}
},
"targetDefaults": {
"build": {
"dependsOn": ["^build"],
"inputs": ["production", "^production"]
"inputs": ["production", "^production"],
"cache": true
},
"lint": {
"inputs": ["default", "{workspaceRoot}/.eslintrc.json", "{workspaceRoot}/.eslintignore"]
"inputs": ["default", "{workspaceRoot}/.eslintrc.json", "{workspaceRoot}/.eslintignore"],
"cache": true
},
"test": {
"inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"]
"inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"],
"cache": true
},
"e2e": {
"cache": true
}
},
"namedInputs": {
Expand All @@ -36,5 +33,6 @@
"workspaceLayout": {
"appsDir": "packages",
"libsDir": "packages"
}
},
"nxCloudAccessToken": "NWQ5YjFmMDAtZGE0Yi00N2FjLWJhODktZTYzMDI2ZGIyNzEzfHJlYWQ="
}
Loading

0 comments on commit 1aa2081

Please sign in to comment.