Skip to content

Commit

Permalink
nx and npm package updates
Browse files Browse the repository at this point in the history
  • Loading branch information
cdepage committed Mar 10, 2024
1 parent ab35a6c commit c4e8f3f
Show file tree
Hide file tree
Showing 192 changed files with 1,693 additions and 2,259 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,5 @@ Thumbs.db

# env files
.env

.nx/cache
2 changes: 1 addition & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
save-exact=true
save-exact=true
3 changes: 2 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Add files here to ignore them from prettier formatting
/dist
/coverage
/coverage
/.nx/cache
2 changes: 1 addition & 1 deletion docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
**Changed**

- updated @zerodep/types timezones
- internal tooling and dependency updates
- removed support for Node v16 as it is beyond end of life
- internal package updates

---

Expand Down
30 changes: 17 additions & 13 deletions nx.json
Original file line number Diff line number Diff line change
@@ -1,30 +1,34 @@
{
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"tasksRunnerOptions": {
"default": {
"runner": "nx/tasks-runners/default",
"options": {
"cacheableOperations": ["build", "lint", "test", "e2e"]
}
}
},
"targetDefaults": {
"publish": {
"dependsOn": ["^build"]
},
"build": {
"dependsOn": ["^build"],
"inputs": ["production", "^production"]
"inputs": ["production", "^production"],
"cache": true
},
"test": {
"inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"]
"@nx/jest:jest": {
"inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"],
"cache": true,
"options": {
"passWithNoTests": true
},
"configurations": {
"ci": {
"ci": true,
"codeCoverage": true
}
}
},
"lint": {
"@nx/eslint:lint": {
"inputs": [
"default",
"{workspaceRoot}/.eslintrc.json",
"{workspaceRoot}/.eslintignore"
]
],
"cache": true
}
},
"namedInputs": {
Expand Down
Loading

0 comments on commit c4e8f3f

Please sign in to comment.