Skip to content

Commit

Permalink
chore: nx migrate latest
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanWalker committed Jan 24, 2025
1 parent a92d613 commit fe47625
Show file tree
Hide file tree
Showing 4 changed files with 348 additions and 428 deletions.
41 changes: 41 additions & 0 deletions migrations.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"migrations": [
{
"version": "20.0.0-beta.7",
"description": "Migration for v20.0.0-beta.7",
"implementation": "./src/migrations/update-20-0-0/move-use-daemon-process",
"package": "nx",
"name": "move-use-daemon-process"
},
{
"version": "20.0.1",
"description": "Set `useLegacyCache` to true for migrating workspaces",
"implementation": "./src/migrations/update-20-0-1/use-legacy-cache",
"x-repair-skip": true,
"package": "nx",
"name": "use-legacy-cache"
},
{
"version": "20.2.0-beta.5",
"description": "Update TypeScript ESLint packages to v8.13.0 if they are already on v8",
"implementation": "./src/migrations/update-20-2-0/update-typescript-eslint-v8-13-0",
"package": "@nx/eslint",
"name": "update-typescript-eslint-v8.13.0"
},
{
"version": "20.3.0-beta.1",
"description": "Update ESLint flat config to include .cjs, .mjs, .cts, and .mts files in overrides (if needed)",
"implementation": "./src/migrations/update-20-3-0/add-file-extensions-to-overrides",
"package": "@nx/eslint",
"name": "add-file-extensions-to-overrides"
},
{
"cli": "nx",
"version": "20.0.0-beta.5",
"description": "replace getJestProjects with getJestProjectsAsync",
"implementation": "./src/migrations/update-20-0-0/replace-getJestProjects-with-getJestProjectsAsync",
"package": "@nx/jest",
"name": "replace-getJestProjects-with-getJestProjectsAsync"
}
]
}
3 changes: 2 additions & 1 deletion nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,6 @@
"useDaemonProcess": false,
"parallel": 1,
"useInferencePlugins": false,
"defaultBase": "master"
"defaultBase": "master",
"useLegacyCache": true
}
32 changes: 17 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,41 +32,43 @@
},
"private": true,
"devDependencies": {
"@nx/devkit": "19.5.7",
"@nx/workspace": "19.5.7",
"@nx/js": "19.5.7",
"@nx/plugin": "19.5.7",
"@nx/jest": "19.5.7",
"@nx/node": "19.5.7",
"@nx/eslint-plugin": "19.5.7",
"@nx/devkit": "20.3.3",
"@nx/eslint": "20.3.3",
"@nx/eslint-plugin": "20.3.3",
"@nx/jest": "20.3.3",
"@nx/js": "20.3.3",
"@nx/node": "20.3.3",
"@nx/plugin": "20.3.3",
"@nx/workspace": "20.3.3",
"@swc-node/register": "1.10.9",
"@swc/core": "1.7.10",
"@types/jest": "~29.5.0",
"@types/jest": "29.5.14",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"@typescript-eslint/utils": "^8.13.0",
"conventional-changelog-cli": "^5.0.0",
"dotenv": "~16.4.0",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"github-contributors-list": "~1.2.3",
"husky": "~9.0.0",
"jest": "29.7.0",
"nx-cloud": "19.0.0",
"nx": "19.5.7",
"nx": "20.3.3",
"nx-cloud": "19.1.0",
"parse-version-string": "^1.0.1",
"prettier": "^3.3.0",
"rxjs": "^7.8.1",
"semver": "^7.5.4",
"ts-jest": "29.2.4",
"ts-node": "^10.9.0",
"tslib": "^2.0.0",
"typescript": "5.5.4",
"@nx/eslint": "19.5.7"
"typescript": "5.6.3"
},
"lint-staged": {
"**/*.{js,ts,scss,json,html}": [
"npx prettier --write"
]
}
},
"dependencies": {}
}
Loading

0 comments on commit fe47625

Please sign in to comment.