Skip to content

Commit

Permalink
feat: migrate workspace to nx 19.x
Browse files Browse the repository at this point in the history
The Nx workspace also needs to be migrated to v19.x to to use `@nxlv/python` or
`@nxlv/data-migration` v19.x packages

BREAKING CHANGE: migrate Nx workspace to 19.x
  • Loading branch information
lucasvieirasilva committed Aug 8, 2024
1 parent 48f8c4b commit 2814881
Show file tree
Hide file tree
Showing 9 changed files with 15,304 additions and 24,734 deletions.
10 changes: 8 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,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"
}
},
{
"files": ["*.spec.ts", "*.spec.tsx", "*.spec.js", "*.spec.jsx"],
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,5 @@ Thumbs.db
# Reports
reports/

.nx/cache
.nx/cache
.nx/workspace-data
3 changes: 2 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
/dist
/coverage

/.nx/cache
/.nx/cache
/.nx/workspace-data
Loading

0 comments on commit 2814881

Please sign in to comment.