Skip to content

Commit

Permalink
build: upgrade nx
Browse files Browse the repository at this point in the history
  • Loading branch information
gregmartDOTin committed Jun 26, 2024
1 parent 24a23ad commit 225ce8a
Show file tree
Hide file tree
Showing 6 changed files with 531 additions and 887 deletions.
15 changes: 12 additions & 3 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": [
Expand All @@ -44,7 +50,10 @@
],
"extends": ["plugin:@nx/typescript"],
"env": {},
"rules": {}
"rules": {
"@typescript-eslint/no-extra-semi": "error",
"no-extra-semi": "off"
}
},
{
"files": "*.json",
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -87,4 +87,5 @@ yarn-error.log
.DS_Store
Thumbs.db

.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
34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,35 +36,35 @@
"@babel/core": "^7.24.4",
"@babel/preset-react": "^7.24.1",
"@chromatic-com/storybook": "^1.3.3",
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@commitlint/config-nx-scopes": "^17.8.1",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/config-nx-scopes": "^19.3.1",
"@jscutlery/semver": "^5.2.2",
"@mui/lab": "^5.0.0-alpha.147",
"@mui/x-data-grid": "^7.2.0",
"@nx/devkit": "18.2.4",
"@nx/eslint": "18.2.4",
"@nx/eslint-plugin": "18.2.4",
"@nx/jest": "18.2.4",
"@nx/js": "18.2.4",
"@nx/plugin": "18.2.4",
"@nx/react": "18.2.4",
"@nx/storybook": "18.2.4",
"@nx/vite": "18.2.4",
"@nx/workspace": "18.2.4",
"@nx/devkit": "19.3.1",
"@nx/eslint": "19.3.1",
"@nx/eslint-plugin": "19.3.1",
"@nx/jest": "19.3.1",
"@nx/js": "19.3.1",
"@nx/plugin": "19.3.1",
"@nx/react": "19.3.1",
"@nx/storybook": "19.3.1",
"@nx/vite": "19.3.1",
"@nx/workspace": "19.3.1",
"@storybook/addon-a11y": "7.6.17",
"@storybook/addon-essentials": "7.6.17",
"@storybook/addon-themes": "7.6.17",
"@storybook/core-server": "7.6.17",
"@storybook/mdx1-csf": "^1.0.0",
"@storybook/react-vite": "7.6.17",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "14.0.0",
"@testing-library/react": "15.0.6",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "29.4.4",
"@types/node": "18.19.31",
"@types/react": "18.2.24",
"@types/react-dom": "18.2.9",
"@types/react": "18.3.1",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "7.6.0",
"@typescript-eslint/parser": "7.6.0",
"babel-jest": "29.4.3",
Expand All @@ -82,7 +82,7 @@
"jsdom": "22.1.0",
"jsonc-eslint-parser": "^2.4.0",
"lint-staged": "^15.2.2",
"nx": "18.2.4",
"nx": "19.3.1",
"prettier": "^3.2.5",
"react-hook-form": "^7.51.3",
"remark-gfm": "^4.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/nx-generator/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@availity/nx-generator",
"version": "0.0.1",
"dependencies": {
"@nx/devkit": "18.2.4",
"@nx/devkit": "19.3.1",
"tslib": "^2.3.0"
},
"type": "commonjs",
Expand Down
Loading

0 comments on commit 225ce8a

Please sign in to comment.