Skip to content

Commit 7654531

Browse files
committed
build: update Nx 19 & other dependencies
Signed-off-by: Vojtech Masek <[email protected]>
1 parent 8a29478 commit 7654531

File tree

7 files changed

+4177
-3229
lines changed

7 files changed

+4177
-3229
lines changed

.eslintrc.json

+10-3
Original file line numberDiff line numberDiff line change
@@ -91,14 +91,21 @@
9191
"rules": {
9292
"vitest/consistent-test-filename": [
9393
"warn",
94-
{ "pattern": ".*\\.(unit|integration|e2e)\\.test\\.[tj]sx?$" }
95-
]
94+
{
95+
"pattern": ".*\\.(unit|integration|e2e)\\.test\\.[tj]sx?$"
96+
}
97+
],
98+
"@typescript-eslint/no-extra-semi": "error",
99+
"no-extra-semi": "off"
96100
}
97101
},
98102
{
99103
"files": ["*.js", "*.jsx"],
100104
"extends": ["plugin:@nx/javascript", "@code-pushup"],
101-
"rules": {}
105+
"rules": {
106+
"@typescript-eslint/no-extra-semi": "error",
107+
"no-extra-semi": "off"
108+
}
102109
},
103110
{
104111
"files": "*.json",

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ Thumbs.db
4747
**/.code-pushup
4848

4949
# Nx workspace cache
50-
.nx/cache
50+
.nx

.prettierignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Add files here to ignore them from prettier formatting
22
/dist
33
/coverage
4-
/.nx/cache
4+
/.nx
55
__snapshots__

nx.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@
9898
{
9999
"plugin": "@push-based/nx-verdaccio",
100100
"options": {
101+
101102
"environments": {
102103
"environmentsDir": "tmp/e2e",
103104
"targetNames": ["e2e"]
@@ -107,5 +108,6 @@
107108
}
108109
}
109110
}
110-
]
111+
],
112+
"useInferencePlugins": false
111113
}

0 commit comments

Comments
 (0)