Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade nx to 19.6.5 #1020

Merged
merged 1 commit into from
Sep 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions apps/jetstream/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "apps/jetstream/src",
"projectType": "application",
"tags": [],
"generators": {},
"targets": {
"build": {
Expand Down Expand Up @@ -142,8 +143,8 @@
"production": {
"buildTarget": "jetstream:build:production"
}
}
},
"dependsOn": ["build"]
}
},
"tags": []
}
}
75 changes: 53 additions & 22 deletions migrations.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,35 +2,66 @@
"migrations": [
{
"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": "19-2-0-move-graph-cache-directory"
"version": "19.6.3-beta.0",
"description": "Migrate proxy config files to match new format from webpack-dev-server v5.",
"implementation": "./src/migrations/update-19-6-3/proxy-config",
"package": "@nx/webpack",
"name": "update-19-6-3-proxy-config"
},
{
"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.6.0-beta.4",
"description": "Ensure Module Federation DTS is turned off by default.",
"factory": "./src/migrations/update-19-6-0/turn-off-dts-by-default",
"package": "@nx/react",
"name": "update-19-6-0-turn-module-federation-dts-off"
},
{
"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.6.0-beta.4",
"description": "Update the server file for Module Federation SSR port value to be the same as the 'serve' target port value.",
"factory": "./src/migrations/update-19-6-0/update-ssr-server-port",
"package": "@nx/react",
"name": "update-module-federation-ssr-server-file"
},
{
"cli": "nx",
"version": "19.6.1-beta.0",
"description": "Ensure Target Defaults are set correctly for Module Federation.",
"factory": "./src/migrations/update-19-6-1/ensure-depends-on-for-mf",
"package": "@nx/react",
"name": "update-19-6-1-ensure-module-federation-target-defaults"
},
{
"cli": "nx",
"version": "19.6.0-beta.0",
"description": "Use serve-static or preview for webServerCommand.",
"implementation": "./src/migrations/update-19-6-0/use-serve-static-preview-for-command",
"package": "@nx/playwright",
"name": "19-6-0-use-serve-static-preview-for-command"
},
{
"cli": "nx",
"version": "19.6.0-beta.1",
"description": "Add inferred ciTargetNames to targetDefaults with dependsOn to ensure dependent application builds are scheduled before atomized tasks.",
"implementation": "./src/migrations/update-19-6-0/add-e2e-ci-target-defaults",
"package": "@nx/playwright",
"name": "update-19-6-0-add-e2e-ci-target-defaults"
},
{
"version": "19.6.0-beta.0",
"description": "Add dependsOn: [build] to preview targets using preview-server",
"implementation": "./src/migrations/update-19-6-0/add-depends-on-for-preview",
"package": "@nx/vite",
"name": "update-19-6-0-add-depends-on-for-preview-server"
},
{
"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.6.0-beta.0",
"description": "Update workspace to use Storybook v8",
"implementation": "./src/migrations/update-19-6-0/update-sb-8",
"package": "@nx/storybook",
"name": "update-19-6-0-add-nx-packages"
}
]
}
}
60 changes: 30 additions & 30 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,32 +97,32 @@
"@babel/preset-typescript": "^7.24.1",
"@contentful/rich-text-react-renderer": "^15.12.1",
"@emotion/babel-plugin": "11.11.0",
"@nx/devkit": "19.3.2",
"@nx/esbuild": "19.3.2",
"@nx/eslint": "19.3.2",
"@nx/eslint-plugin": "19.3.2",
"@nx/express": "19.3.2",
"@nx/jest": "19.3.2",
"@nx/js": "19.3.2",
"@nx/next": "19.3.2",
"@nx/node": "19.3.2",
"@nx/playwright": "19.3.2",
"@nx/plugin": "19.3.2",
"@nx/react": "19.3.2",
"@nx/storybook": "19.3.2",
"@nx/vite": "19.3.2",
"@nx/web": "19.3.2",
"@nx/webpack": "19.3.2",
"@nx/workspace": "19.3.2",
"@nx/devkit": "19.6.5",
"@nx/esbuild": "19.6.5",
"@nx/eslint": "19.6.5",
"@nx/eslint-plugin": "19.6.5",
"@nx/express": "19.6.5",
"@nx/jest": "19.6.5",
"@nx/js": "19.6.5",
"@nx/next": "19.6.5",
"@nx/node": "19.6.5",
"@nx/playwright": "19.6.5",
"@nx/plugin": "19.6.5",
"@nx/react": "19.6.5",
"@nx/storybook": "19.6.5",
"@nx/vite": "19.6.5",
"@nx/web": "19.6.5",
"@nx/webpack": "19.6.5",
"@nx/workspace": "19.6.5",
"@playwright/test": "^1.43.1",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@release-it/bumper": "^6.0.1",
"@release-it/conventional-changelog": "^5.0.0",
"@salesforce-ux/design-system": "^2.23.2",
"@storybook/addon-essentials": "7.5.3",
"@storybook/addon-essentials": "8.2.9",
"@storybook/addon-knobs": "^7.0.2",
"@storybook/core-server": "7.5.3",
"@storybook/react": "7.5.3",
"@storybook/core-server": "8.2.9",
"@storybook/react": "8.2.9",
"@svgr/webpack": "8.0.1",
"@swc-node/register": "1.9.2",
"@swc/cli": "0.3.14",
Expand All @@ -145,7 +145,7 @@
"@types/gapi.client.drive": "^3.0.15",
"@types/google.accounts": "^0.0.2",
"@types/google.picker": "^0.0.42",
"@types/jest": "29.4.0",
"@types/jest": "29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/lodash": "^4.17.0",
"@types/multer": "^1.4.11",
Expand All @@ -163,13 +163,13 @@
"@types/react-transition-group": "^4.4.9",
"@types/sass": "^1.45.0",
"@types/webpack": "4.41.21",
"@typescript-eslint/eslint-plugin": "7.7.1",
"@typescript-eslint/parser": "7.7.1",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@vitejs/plugin-react": "4.2.1",
"@vitest/coverage-v8": "1.5.2",
"@vitest/ui": "1.5.2",
"autoprefixer": "10.4.13",
"babel-jest": "29.4.3",
"babel-jest": "29.7.0",
"babel-loader": "^9.1.3",
"chrome-types": "^0.1.291",
"chrome-webstore-upload-cli": "^3.3.0",
Expand All @@ -190,14 +190,14 @@
"eslint-plugin-storybook": "^0.8.0",
"git-revision-webpack-plugin": "^5.0.0",
"html-webpack-plugin": "^5.6.0",
"jest": "29.4.3",
"jest-environment-jsdom": "29.4.3",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-environment-node": "^29.4.1",
"jsdom": "22.1.0",
"jsonc-eslint-parser": "^2.1.0",
"next-sitemap": "^4.2.3",
"npm-run-all": "^4.1.5",
"nx": "19.3.2",
"nx": "19.6.5",
"postcss": "8.4.38",
"postcss-preset-env": "7",
"prettier": "2.7.0",
Expand All @@ -207,15 +207,15 @@
"sass": "^1.75.0",
"sass-loader": "^10.0.4",
"start-server-and-test": "^1.15.2",
"storybook": "7.0.20",
"storybook": "8.2.9",
"style-loader": "^3.3.0",
"stylus": "0.59.0",
"stylus-loader": "^7.1.0",
"swc-loader": "0.1.15",
"tailwindcss": "3.4.3",
"ts-jest": "29.1.0",
"ts-node": "^10.9.2",
"typescript": "5.4.5",
"typescript": "5.5.4",
"url-loader": "^4.1.1",
"vite": "^5.1.4",
"vite-plugin-dts": "~3.8.1",
Expand Down Expand Up @@ -246,7 +246,7 @@
"@react-aria/dialog": "^3.5.12",
"@react-aria/focus": "^3.16.2",
"@react-aria/overlays": "^3.21.1",
"@storybook/react-webpack5": "7.5.3",
"@storybook/addon-interactions": "^8.2.8",
"@swc/helpers": "0.5.11",
"@tanstack/react-virtual": "^3.4.0",
"@tippyjs/react": "^4.2.6",
Expand Down
Loading