Skip to content

Commit 9af61b4

Browse files
committed
refactor(pci-private-registry): migrate pci-private-registry to pnpm
ref: MANAGER-20363 Signed-off-by: GitHub Actions <actions@github.com>
1 parent 72e1f67 commit 9af61b4

File tree

5 files changed

+4361
-7126
lines changed

5 files changed

+4361
-7126
lines changed

packages/manager-tools/manager-pm/src/playbook/catalog/pnpm-catalog.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@
55
"packages/manager/apps/pci-instances",
66
"packages/manager/apps/web-hosting",
77
"packages/manager/apps/web-ongoing-operations",
8-
"packages/manager/apps/pci-block-storage"
8+
"packages/manager/apps/pci-block-storage",
9+
"packages/manager/apps/pci-private-registry"
910
]

packages/manager-tools/manager-pm/src/playbook/catalog/yarn-catalog.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@
4646
"packages/manager/apps/pci-load-balancer",
4747
"packages/manager/apps/pci-object-storage",
4848
"packages/manager/apps/pci-private-network",
49-
"packages/manager/apps/pci-private-registry",
5049
"packages/manager/apps/pci-public-ip",
5150
"packages/manager/apps/pci-quota",
5251
"packages/manager/apps/pci-rancher",

packages/manager/apps/pci-private-registry/package.json

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
"test:w": "vitest"
1414
},
1515
"dependencies": {
16-
"@hookform/resolvers": "^3.9.1",
16+
"@hookform/resolvers": "3.10.0",
1717
"@ovh-ux/manager-config": "^8.8.0",
1818
"@ovh-ux/manager-core-api": "^0.19.4",
1919
"@ovh-ux/manager-core-utils": "^0.4.9",
2020
"@ovh-ux/manager-pci-common": "^0.18.2",
21-
"@ovh-ux/manager-react-components": "^1.46.0",
21+
"@ovh-ux/manager-react-components": "1.48.0",
2222
"@ovh-ux/manager-react-core-application": "^0.13.4",
2323
"@ovh-ux/manager-react-shell-client": "^0.11.2",
2424
"@ovh-ux/manager-tailwind-config": "^0.6.1",
@@ -28,33 +28,34 @@
2828
"@ovhcloud/ods-common-theming": "17.2.2",
2929
"@ovhcloud/ods-components": "17.2.2",
3030
"@ovhcloud/ods-theme-blue-jeans": "17.2.2",
31-
"@tanstack/react-query": "^5.51.21",
32-
"@tanstack/react-table": "^8.17.3",
31+
"@tanstack/react-query": "5.90.11",
32+
"@tanstack/react-table": "8.21.3",
3333
"clsx": "^2.1.1",
3434
"date-fns": "^3.6.0",
3535
"element-internals-polyfill": "^1.3.11",
36-
"i18next": "^23.8.2",
37-
"i18next-http-backend": "^2.5.2",
38-
"react": "^18.2.0",
39-
"react-dom": "^18.2.0",
40-
"react-hook-form": "^7.52.1",
41-
"react-i18next": "^14.1.2",
42-
"react-router-dom": "^6.3.0",
43-
"react-use": "^17.5.0",
36+
"i18next": "23.16.8",
37+
"i18next-http-backend": "2.7.3",
38+
"react": "18.3.1",
39+
"react-dom": "18.3.1",
40+
"react-hook-form": "7.67.0",
41+
"react-i18next": "14.1.3",
42+
"react-router-dom": "6.30.2",
43+
"react-use": "17.6.0",
4444
"zod": "^3.24.1",
4545
"zustand": "^4.5.5"
4646
},
4747
"devDependencies": {
4848
"@jest/globals": "^29.7.0",
49+
"@ovh-ux/manager-tests-setup": "^0.4.7",
4950
"@ovh-ux/manager-vite-config": "^0.15.2",
50-
"@tanstack/react-query-devtools": "^5.51.21",
51+
"@tanstack/react-query-devtools": "5.91.1",
5152
"@testing-library/dom": "^10.1.0",
5253
"@testing-library/jest-dom": "^6.4.5",
5354
"@testing-library/react": "^16.0.0",
5455
"@testing-library/user-event": "^14.5.2",
55-
"@types/jest": "^29.5.12",
56-
"@types/react": "^18.2.79",
57-
"@types/react-dom": "^18.3.0",
56+
"@types/jest": "29.5.14",
57+
"@types/react": "18.3.27",
58+
"@types/react-dom": "18.3.7",
5859
"@vitejs/plugin-react": "^4.3.0",
5960
"@vitest/coverage-v8": "^2.1.9",
6061
"autoprefixer": "^10.4.19",

packages/manager/apps/pci-private-registry/vitest.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { defaultDedupedDependencies } from '@ovh-ux/manager-tests-setup';
12
import path from 'path';
23
import { defineConfig } from 'vite';
34
import react from '@vitejs/plugin-react';
@@ -30,6 +31,7 @@ export default defineConfig({
3031
},
3132
},
3233
resolve: {
34+
dedupe: [...defaultDedupedDependencies],
3335
alias: {
3436
'@': path.resolve(__dirname, 'src'),
3537
},

0 commit comments

Comments
 (0)