Skip to content

Commit 8ec7fef

Browse files
committed
build(observability): migrate to pnpm build tool
resolves: #MAOBS-128 Signed-off-by: David Arsène <[email protected]>
1 parent e322dbe commit 8ec7fef

File tree

3 files changed

+16
-14
lines changed

3 files changed

+16
-14
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[]
1+
["packages/manager/apps/observability"]

packages/manager/apps/observability/package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -23,34 +23,34 @@
2323
"@ovh-ux/manager-config": "*",
2424
"@ovh-ux/manager-core-api": "*",
2525
"@ovh-ux/manager-core-utils": "*",
26-
"@ovh-ux/manager-react-components": "^2.42.1",
26+
"@ovh-ux/manager-react-components": "2.42.4",
2727
"@ovh-ux/manager-react-core-application": "*",
2828
"@ovh-ux/manager-react-shell-client": "*",
2929
"@ovh-ux/request-tagger": "*",
3030
"@ovh-ux/shell": "^4.5.7",
31-
"@ovhcloud/ods-components": "^18.6.2",
32-
"@ovhcloud/ods-themes": "^18.6.2",
33-
"@tanstack/react-query": "^5.51.21",
31+
"@ovhcloud/ods-components": "18.6.2",
32+
"@ovhcloud/ods-themes": "18.6.2",
33+
"@tanstack/react-query": "5.51.21",
3434
"axios": "^1.6.0",
3535
"clsx": "^2.1.1",
3636
"element-internals-polyfill": "^3.0.2",
37-
"i18next": "^23.8.2",
38-
"i18next-http-backend": "^2.4.2",
39-
"react": "^18.2.0",
40-
"react-dom": "^18.2.0",
41-
"react-i18next": "^14.1.2",
42-
"react-router-dom": "^6.3.0",
37+
"i18next": "23.8.2",
38+
"i18next-http-backend": "2.4.3",
39+
"react": "18.2.0",
40+
"react-dom": "18.2.0",
41+
"react-i18next": "14.1.3",
42+
"react-router-dom": "6.16.0",
4343
"tailwindcss": "^3.4.4"
4444
},
4545
"devDependencies": {
4646
"@ovh-ux/manager-static-analysis-kit": "*",
4747
"@ovh-ux/manager-tests-setup": "*",
4848
"@ovh-ux/manager-vite-config": "*",
49-
"@tanstack/react-query-devtools": "^5.51.21"
49+
"@tanstack/react-query-devtools": "5.51.21"
5050
},
5151
"regions": [
5252
"CA",
5353
"EU",
5454
"US"
5555
]
56-
}
56+
}

packages/manager/apps/observability/vitest.config.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import path from 'path';
22

33
import {
44
createConfig,
5+
defaultDedupedDependencies,
56
defaultExcludedFiles,
67
mergeConfig,
78
sharedConfig,
@@ -27,7 +28,8 @@ export default mergeConfig(
2728
],
2829
},
2930
},
30-
resolve: {
31+
resolve: {
32+
dedupe: [...defaultDedupedDependencies],
3133
alias: {
3234
// eslint-disable-next-line no-undef
3335
'@': path.resolve(__dirname, 'src'),

0 commit comments

Comments
 (0)