Skip to content

Commit

Permalink
feat: update nx to 19.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
TheUnderScorer committed Jul 9, 2024
1 parent f54b0ce commit 2b20c6a
Show file tree
Hide file tree
Showing 6 changed files with 5,306 additions and 4,041 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"
}
}
]
}
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
35 changes: 30 additions & 5 deletions migrations.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,36 @@
{
"migrations": [
{
"version": "18.1.0-beta.3",
"description": "Moves affected.defaultBase to defaultBase in `nx.json`",
"implementation": "./src/migrations/update-17-2-0/move-default-base",
"cli": "nx",
"version": "19.2.0-beta.2",
"description": "Updates the default workspace data directory to .nx/workspace-data",
"implementation": "./src/migrations/update-19-2-0/move-workspace-data-directory",
"package": "nx",
"name": "move-default-base-to-nx-json-root"
"name": "19-2-0-move-graph-cache-directory"
},
{
"cli": "nx",
"version": "19.2.2-beta.0",
"description": "Updates the nx wrapper.",
"implementation": "./src/migrations/update-17-3-0/update-nxw",
"package": "nx",
"name": "19-2-2-update-nx-wrapper"
},
{
"version": "19.2.4-beta.0",
"description": "Set project name in nx.json explicitly",
"implementation": "./src/migrations/update-19-2-4/set-project-name",
"x-repair-skip": true,
"package": "nx",
"name": "19-2-4-set-project-name"
},
{
"cli": "nx",
"version": "19.1.0-beta.6",
"description": "Migrate no-extra-semi rules into user config, out of nx extendable configs",
"implementation": "./src/migrations/update-19-1-0-migrate-no-extra-semi/migrate-no-extra-semi",
"package": "@nx/eslint-plugin",
"name": "update-19-1-0-rename-no-extra-semi"
}
]
}
}
29 changes: 14 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
},
"private": true,
"dependencies": {
"@nx/devkit": "18.1.1",
"@nx/devkit": "19.4.2",
"@semantic-release/changelog": "6.0.2",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
Expand All @@ -56,38 +56,37 @@
"semantic-release-plugin-decorators": "3.0.1"
},
"devDependencies": {
"@nx/eslint": "18.1.1",
"@nx/eslint-plugin": "18.1.1",
"@nx/jest": "18.1.1",
"@nx/js": "18.1.1",
"@nx/node": "18.1.1",
"@nx/plugin": "18.1.1",
"@nx/web": "18.1.1",
"@nx/workspace": "18.1.1",
"@nx/eslint": "19.4.2",
"@nx/eslint-plugin": "19.4.2",
"@nx/jest": "19.4.2",
"@nx/js": "19.4.2",
"@nx/node": "19.4.2",
"@nx/plugin": "19.4.2",
"@nx/web": "19.4.2",
"@nx/workspace": "19.4.2",
"@types/fs-extra": "^11.0.1",
"@types/jest": "29.4.4",
"@types/node": "18.19.22",
"@types/semantic-release": "20.0.1",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"@typescript-eslint/eslint-plugin": "7.9.0",
"@typescript-eslint/parser": "7.9.0",
"@zerollup/ts-transform-paths": "^1.7.18",
"ajv": "^8.12.0",
"conventional-changelog-conventionalcommits": "^5.0.0",
"dotenv": "^16.3.1",
"eslint": "8.48.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"fs-extra": "^11.1.1",
"gitlog": "^4.0.4",
"jest": "29.4.3",
"jest-environment-jsdom": "29.4.3",
"nx": "18.1.1",
"nx": "19.4.2",
"prettier": "2.7.1",
"rimraf": "^4.1.2",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"ttypescript": "^1.5.13",
"type-fest": "^2.8.0",
"typescript": "5.3.3"
"typescript": "5.4.5"
}
}

Loading

0 comments on commit 2b20c6a

Please sign in to comment.