Skip to content

Commit

Permalink
chore(nxext): update to Nx 19.3
Browse files Browse the repository at this point in the history
  • Loading branch information
DominikPieper committed Jun 19, 2024
1 parent d3111c7 commit 05d47a1
Show file tree
Hide file tree
Showing 12 changed files with 625 additions and 577 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,4 @@ e2e/stencil-e2e/tests/dev.test.ts
/docs/.vitepress/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 @@ -6,4 +6,5 @@
.docusaurus/
/build

/.nx/cache
/.nx/cache
/.nx/workspace-data
26 changes: 21 additions & 5 deletions migrations.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,27 @@
"migrations": [
{
"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"
"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": "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"
}
]
}
40 changes: 20 additions & 20 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,30 +50,30 @@
"@commitlint/config-conventional": "^17.0.0",
"@eslint/eslintrc": "^2.1.1",
"@eslint/js": "8.49.0",
"@nx/angular": "19.1.0",
"@nx/cypress": "19.1.0",
"@nx/devkit": "19.1.0",
"@nx/eslint": "19.1.0",
"@nx/eslint-plugin": "19.1.0",
"@nx/jest": "19.1.0",
"@nx/js": "19.1.0",
"@nx/node": "19.1.0",
"@nx/playwright": "19.1.0",
"@nx/plugin": "19.1.0",
"@nx/react": "19.1.0",
"@nx/storybook": "19.1.0",
"@nx/vite": "19.1.0",
"@nx/web": "19.1.0",
"@nx/workspace": "19.1.0",
"@nx/angular": "19.3.0",
"@nx/cypress": "19.3.0",
"@nx/devkit": "19.3.0",
"@nx/eslint": "19.3.0",
"@nx/eslint-plugin": "19.3.0",
"@nx/jest": "19.3.0",
"@nx/js": "19.3.0",
"@nx/node": "19.3.0",
"@nx/playwright": "19.3.0",
"@nx/plugin": "19.3.0",
"@nx/react": "19.3.0",
"@nx/storybook": "19.3.0",
"@nx/vite": "19.3.0",
"@nx/web": "19.3.0",
"@nx/workspace": "19.3.0",
"@phenomnomnominal/tsquery": "~5.0.1",
"@preact/preset-vite": "^2.8.2",
"@schematics/angular": "16.0.0",
"@stencil/core": "4.12.6",
"@swc-node/register": "1.8.0",
"@swc-node/register": "1.9.2",
"@swc/cli": "0.3.12",
"@swc/core": "1.3.91",
"@swc/helpers": "0.5.2",
"@swc/jest": "0.2.26",
"@swc/core": "1.5.7",
"@swc/helpers": "0.5.11",
"@swc/jest": "0.2.36",
"@types/fs-extra": "^11.0.4",
"@types/glob": "^8.1.0",
"@types/globrex": "^0.1.2",
Expand Down Expand Up @@ -106,7 +106,7 @@
"jsonc-parser": "^3.2.1",
"kill-port": "^2.0.1",
"lint-staged": "13.2.3",
"nx": "19.1.0",
"nx": "19.3.0",
"prettier": "2.7.1",
"pretty-quick": "^3.1.3",
"svelte": "^4.2.12",
Expand Down
7 changes: 6 additions & 1 deletion packages/common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,10 @@
"bugs": {
"url": "https://github.com/nxext/nx-extensions/issues"
},
"dependencies": {}
"dependencies": {
"@nx/devkit": "19.3.0",
"typescript": "5.4.5",
"@nx/js": "19.3.0",
"tslib": "^2.3.0"
}
}
12 changes: 11 additions & 1 deletion packages/preact/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,16 @@
},
"main": "src/index.js",
"generators": "./generators.json",
"peerDependencies": {},
"peerDependencies": {
"@nx/devkit": "19.3.0",
"@nx/vite": "19.3.0",
"@nx/web": "19.3.0",
"@nx/cypress": "19.3.0",
"@nx/jest": "19.3.0",
"@nx/eslint": "19.3.0",
"typescript": "5.4.5",
"@nx/js": "19.3.0",
"tslib": "^2.3.0"
},
"dependencies": {}
}
12 changes: 11 additions & 1 deletion packages/solid/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,17 @@
},
"main": "src/index.js",
"generators": "./generators.json",
"dependencies": {},
"dependencies": {
"@nx/devkit": "19.3.0",
"@nx/vite": "19.3.0",
"@nx/web": "19.3.0",
"@nx/cypress": "19.3.0",
"@nx/jest": "19.3.0",
"@nx/eslint": "19.3.0",
"typescript": "5.4.5",
"@nx/js": "19.3.0",
"tslib": "^2.3.0"
},
"peerDependencies": {},
"nx-migrate": {
"migrations": "./migrations.json"
Expand Down
18 changes: 17 additions & 1 deletion packages/stencil/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,23 @@
"builders": "./executors.json",
"executors": "./executors.json",
"dependencies": {
"@nxext/common": "^19.0.0"
"@nxext/common": "^19.0.0",
"@nx/devkit": "19.3.0",
"@stencil/core": "4.12.6",
"@nx/workspace": "19.3.0",
"@nx/js": "19.3.0",
"typescript": "5.4.5",
"fs-extra": "^10.1.0",
"@nx/angular": "19.3.0",
"@nx/eslint": "19.3.0",
"@nx/react": "19.3.0",
"@nx/web": "19.3.0",
"@nx/cypress": "19.3.0",
"@nx/jest": "19.3.0",
"@nx/storybook": "19.3.0",
"@phenomnomnominal/tsquery": "~5.0.1",
"ignore": "^5.2.4",
"tslib": "^2.3.0"
},
"peerDependencies": {
"@nxext/svelte": "^19.0.0"
Expand Down
14 changes: 13 additions & 1 deletion packages/svelte/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,18 @@
"main": "./src/index.js",
"typings": "./src/index.d.ts",
"schematics": "./generators.json",
"peerDependencies": {},
"peerDependencies": {
"@nx/devkit": "19.3.0",
"@nx/vite": "19.3.0",
"@nx/web": "19.3.0",
"@nx/cypress": "19.3.0",
"@nx/jest": "19.3.0",
"@nx/eslint": "19.3.0",
"@nx/js": "19.3.0",
"typescript": "5.4.5",
"@nx/storybook": "19.3.0",
"nx": "19.3.0",
"tslib": "^2.3.0"
},
"dependencies": {}
}
2 changes: 1 addition & 1 deletion packages/svelte/src/graph/processProjectGraph.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export function buildExplicitTypeScriptDependencies(
Object.keys(filesToProcess).forEach((source) => {
Object.values(filesToProcess[source]).forEach((f) => {
importLocator.fromFile(f.file, (importExpr: any) => {
const target = targetProjectLocator.findProjectWithImport(
const target = targetProjectLocator.findNpmProjectFromImport(
importExpr,
f.file
);
Expand Down
11 changes: 10 additions & 1 deletion packages/sveltekit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,15 @@
"main": "src/index.js",
"generators": "./generators.json",
"executors": "./executors.json",
"dependencies": {},
"dependencies": {
"@nx/devkit": "19.3.0",
"nx": "19.3.0",
"@nx/vite": "19.3.0",
"@nx/eslint": "19.3.0",
"typescript": "5.4.5",
"@nx/js": "19.3.0",
"@nx/workspace": "19.3.0",
"tslib": "^2.3.0"
},
"peerDependencies": {}
}
Loading

0 comments on commit 05d47a1

Please sign in to comment.