Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabio1988 committed Nov 15, 2024
1 parent e5074b4 commit 4362a7c
Show file tree
Hide file tree
Showing 17 changed files with 7,759 additions and 4,784 deletions.
10 changes: 8 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,18 @@
{
"files": ["*.ts", "*.tsx"],
"extends": ["plugin:@nx/typescript"],
"rules": {}
"rules": {
"@typescript-eslint/no-extra-semi": "error",
"no-extra-semi": "off"
}
},
{
"files": ["*.js", "*.jsx"],
"extends": ["plugin:@nx/javascript"],
"rules": {}
"rules": {
"@typescript-eslint/no-extra-semi": "error",
"no-extra-semi": "off"
}
}
]
}
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,6 @@ docker-compose.yml
.DS_Store
Thumbs.db

.nx/cache
.nx/cache
.nx/workspace-data
migrations.json
3 changes: 2 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@
/coverage
/packages/connections/src/lib/utils/mitmProto.d.ts

/.nx/cache
/.nx/cache
/.nx/workspace-data
8 changes: 4 additions & 4 deletions jest.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { getJestProjects } from '@nx/jest';
import { getJestProjectsAsync } from '@nx/jest';

export default {
projects: getJestProjects(),
};
export default async () => ({
projects: await getJestProjectsAsync(),
});
28 changes: 17 additions & 11 deletions nx.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
{
"extends": "nx/presets/core.json",
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"affected": {
"defaultBase": "main"
},
"defaultProject": "server",
"generators": {
"@nx/react": {
Expand Down Expand Up @@ -38,17 +35,26 @@
"inputs": ["production", "^production"],
"cache": true
},
"lint": {
"@nx/jest:jest": {
"cache": true,
"inputs": ["default", "{workspaceRoot}/.eslintrc.json"]
"inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"],
"options": {
"passWithNoTests": true
},
"configurations": {
"ci": {
"ci": true,
"codeCoverage": true
}
}
},
"test": {
"@nx/eslint:lint": {
"cache": true,
"inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"]
},
"e2e": {
"cache": true
"inputs": ["default", "{workspaceRoot}/.eslintrc.json"]
}
},
"nxCloudAccessToken": "YzIxM2YxMDYtYTUzYi00MmI3LTg0YzAtMWI1NTNmNDVlODdmfHJlYWQtd3JpdGU="
"nxCloudAccessToken": "YzIxM2YxMDYtYTUzYi00MmI3LTg0YzAtMWI1NTNmNDVlODdmfHJlYWQtd3JpdGU=",
"useInferencePlugins": false,
"defaultBase": "main",
"useLegacyCache": true
}
Loading

0 comments on commit 4362a7c

Please sign in to comment.