Skip to content

Commit

Permalink
chore: Updated Nx
Browse files Browse the repository at this point in the history
  • Loading branch information
TriPSs committed Jun 14, 2024
1 parent 9cbc886 commit 56bf48c
Show file tree
Hide file tree
Showing 5 changed files with 260 additions and 303 deletions.
23 changes: 9 additions & 14 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,31 +22,26 @@
"simple-import-sort/imports": [
"warn",
{
"groups": [
// Packages. `react` related packages come first.
["^react", "^@?\\w"],
// "type" imports.
["^.*\\u0000$"],
// Absolute imports and other imports such as Vue-style `@/foo`.
// Anything not matched in another group.
["^"],
// Relative imports.
// Anything that starts with a dot.
["^\\."]
]
"groups": [["^react", "^@?\\w"], ["^.*\\u0000$"], ["^"], ["^\\."]]
}
]
}
},
{
"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"
}
}
]
}
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,5 @@ testem.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
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
},
"dependencies": {
"@actions/core": "^1.10.1",
"@nx/devkit": "19.0.3",
"@nx/workspace": "19.0.3",
"@nx/devkit": "19.3.0",
"@nx/workspace": "19.3.0",
"@types/tar": "^6.1.13",
"axios": "^1.7.2",
"crypto-js": "^4.2.0",
Expand All @@ -49,13 +49,13 @@
"@google-cloud/storage": "^7.11.2",
"@jamesives/github-pages-deploy-action": "^4.6.1",
"@jscutlery/semver": "^5.2.2",
"@nx/eslint-plugin": "19.0.3",
"@nx/jest": "19.0.3",
"@nx/js": "19.0.3",
"@nx/node": "19.0.3",
"@nx/plugin": "19.0.3",
"@nx/react": "19.0.3",
"@nx/webpack": "19.0.3",
"@nx/eslint-plugin": "19.3.0",
"@nx/jest": "19.3.0",
"@nx/js": "19.3.0",
"@nx/node": "19.3.0",
"@nx/plugin": "19.3.0",
"@nx/react": "19.3.0",
"@nx/webpack": "19.3.0",
"@swc-node/register": "1.9.2",
"@swc/core": "1.5.29",
"@types/jest": "29.5.12",
Expand All @@ -73,7 +73,7 @@
"husky": "^9.0.11",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"nx": "19.0.3",
"nx": "19.3.0",
"prettier": "3.3.2",
"ts-jest": "29.1.4",
"ts-node": "10.9.2",
Expand Down
Loading

0 comments on commit 56bf48c

Please sign in to comment.