chore: nx migrate

This commit is contained in:
Nathan Walker
2025-04-10 09:54:06 -07:00
parent 4d5f148dd2
commit 15e76fb662
5 changed files with 1773 additions and 886 deletions

View File

@ -1,7 +1,7 @@
{
"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" },
{ "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" }
{ "version": "20.5.0-beta.2", "description": "Install jiti as a devDependency to allow vite to parse TS postcss files.", "implementation": "./src/migrations/update-20-5-0/install-jiti", "package": "@nx/vite", "name": "update-20-5-0-install-jiti" },
{ "version": "20.5.0-beta.3", "description": "Update resolve.conditions to include defaults that are no longer provided by Vite.", "implementation": "./src/migrations/update-20-5-0/update-resolve-conditions", "package": "@nx/vite", "name": "update-20-5-0-update-resolve-conditions" },
{ "version": "20.5.0-beta.3", "description": "Add vite config temporary files to the ESLint configuration ignore patterns if ESLint is used.", "implementation": "./src/migrations/update-20-5-0/eslint-ignore-vite-temp-files", "package": "@nx/vite", "name": "eslint-ignore-vite-temp-files" }
]
}

2089
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -28,15 +28,15 @@
"@nativescript/nx": "^20.0.0",
"@nstudio/focus": "^20.0.2",
"@nstudio/nps-i": "~2.0.0",
"@nx/devkit": "20.3.0",
"@nx/eslint-plugin": "20.3.0",
"@nx/jest": "20.3.0",
"@nx/js": "20.3.0",
"@nx/node": "20.3.0",
"@nx/plugin": "20.3.0",
"@nx/vite": "20.3.0",
"@nx/web": "20.3.0",
"@nx/workspace": "20.3.0",
"@nx/devkit": "20.7.2",
"@nx/eslint-plugin": "20.7.2",
"@nx/jest": "20.7.2",
"@nx/js": "20.7.2",
"@nx/node": "20.7.2",
"@nx/plugin": "20.7.2",
"@nx/vite": "20.7.2",
"@nx/web": "20.7.2",
"@nx/workspace": "20.7.2",
"@prettier/plugin-xml": "^3.4.1",
"@swc-node/register": "~1.9.1",
"@swc/core": "~1.5.7",
@ -56,17 +56,18 @@
"emoji-regex": "^10.3.0",
"enhanced-resolve": "^5.8.3",
"eslint": "~8.57.0",
"eslint-config-prettier": "~9.1.0",
"eslint-config-prettier": "^10.1.0",
"gonzales": "^1.0.7",
"husky": "^9.0.0",
"jest": "~29.7.0",
"jest-environment-jsdom": "~29.7.0",
"jiti": "2.4.2",
"jsdom": "~22.1.0",
"lint-staged": "^15.2.0",
"module-alias": "^2.2.2",
"nativescript": "~8.9.0",
"nativescript-typedoc-theme": "1.1.0",
"nx": "20.3.0",
"nx": "20.7.2",
"parse-css": "git+https://github.com/tabatkins/parse-css.git",
"parserlib": "^1.1.1",
"prettier": "^3.2.5",
@ -78,8 +79,8 @@
"ts-patch": "^3.0.0",
"tslib": "^2.6.0",
"typedoc": "^0.27.6",
"typescript": "~5.6.0",
"vite": "^5.0.0",
"typescript": "5.7.3",
"vite": "6.2.6",
"vitest": "^1.3.1",
"zx": "^8.3.0"
},

View File

@ -1,7 +1,7 @@
{
"extends": "../../.eslintrc.json",
"rules": {},
"ignorePatterns": ["!**/*", "**/global-types.d.ts", "**/node_modules/**/*", "**/__tests__/**/*"],
"ignorePatterns": ["!**/*", "**/global-types.d.ts", "**/node_modules/**/*", "**/__tests__/**/*", "**/vite.config.*.timestamp*", "**/vitest.config.*.timestamp*"],
"overrides": [
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],

File diff suppressed because it is too large Load Diff