Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: update Nx 19 & other dependencies #811

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
13 changes: 10 additions & 3 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,14 +91,21 @@
"rules": {
"vitest/consistent-test-filename": [
"warn",
{ "pattern": ".*\\.(unit|integration|e2e)\\.test\\.[tj]sx?$" }
]
{
"pattern": ".*\\.(unit|integration|e2e)\\.test\\.[tj]sx?$"
}
],
"@typescript-eslint/no-extra-semi": "error",
"no-extra-semi": "off"
}
},
{
"files": ["*.js", "*.jsx"],
"extends": ["plugin:@nx/javascript", "@code-pushup"],
"rules": {}
"rules": {
"@typescript-eslint/no-extra-semi": "error",
"no-extra-semi": "off"
}
},
{
"files": "*.json",
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ Thumbs.db
**/.code-pushup

# Nx workspace cache
.nx/cache
.nx
2 changes: 1 addition & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Add files here to ignore them from prettier formatting
/dist
/coverage
/.nx/cache
/.nx
__snapshots__
1 change: 1 addition & 0 deletions e2e/nx-plugin-e2e/tests/plugin-create-nodes.e2e.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ describe('nx-plugin', () => {
configurations: {},
executor: `@code-pushup/nx-plugin:cli`,
options: {},
parallelism: true,
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why this?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It seems to be expected there by the unit test result

},
});

Expand Down
Loading
Loading