Skip to content
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
2 changes: 1 addition & 1 deletion apps/auth/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"@klicker-uzh/types": "workspace:*",
"@klicker-uzh/util": "workspace:*",
"@next-auth/prisma-adapter": "1.0.7",
"@uzh-bf/design-system": "4.1.4",
"@uzh-bf/design-system": "4.1.6",
"axios": "1.7.9",
"bcryptjs": "2.4.3",
"js-cookie": "3.0.5",
Expand Down
2 changes: 1 addition & 1 deletion apps/chat/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"@radix-ui/react-slot": "1.2.3",
"@radix-ui/react-switch": "1.2.5",
"@radix-ui/react-tooltip": "1.2.7",
"@uzh-bf/design-system": "4.1.4",
"@uzh-bf/design-system": "4.1.6",
"ai": "5.0.8",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"@tailwindcss/postcss": "~4.1.11",
"@tailwindcss/typography": "~0.5.16",
"@types/react": "^19.1.8",
"@uzh-bf/design-system": "4.1.4",
"@uzh-bf/design-system": "4.1.6",
"autoprefixer": "~10.4.20",
"cross-env": "~7.0.3",
"docusaurus-plugin-matomo": "~0.0.8",
Expand Down
2 changes: 1 addition & 1 deletion apps/frontend-control/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"@klicker-uzh/shared-components": "workspace:*",
"@klicker-uzh/types": "workspace:*",
"@socialgouv/matomo-next": "1.9.1",
"@uzh-bf/design-system": "4.1.4",
"@uzh-bf/design-system": "4.1.6",
"cross-env": "7.0.3",
"dayjs": "1.11.13",
"deepmerge": "4.3.1",
Expand Down
2 changes: 1 addition & 1 deletion apps/frontend-manage/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"@socialgouv/matomo-next": "1.9.1",
"@tanstack/react-table": "8.20.5",
"@uidotdev/usehooks": "2.4.1",
"@uzh-bf/design-system": "4.1.4",
"@uzh-bf/design-system": "4.1.6",
"dayjs": "1.11.13",
"deepmerge": "4.3.1",
"formik": "2.4.6",
Expand Down
2 changes: 1 addition & 1 deletion apps/frontend-pwa/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"@klicker-uzh/util": "workspace:*",
"@socialgouv/matomo-next": "1.9.1",
"@uidotdev/usehooks": "2.4.1",
"@uzh-bf/design-system": "4.1.4",
"@uzh-bf/design-system": "4.1.6",
"body-parser": "1.20.3",
"dayjs": "1.11.13",
"deepmerge": "4.3.1",
Expand Down
2 changes: 1 addition & 1 deletion apps/office-addin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "3.4.0-alpha.38",
"license": "AGPL-3.0",
"dependencies": {
"@uzh-bf/design-system": "4.1.4",
"@uzh-bf/design-system": "4.1.6",
"core-js": "3.30.2",
"es6-promise": "4.2.8",
"formik": "2.4.6",
Expand Down
2 changes: 1 addition & 1 deletion packages/markdown/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"@fortawesome/free-regular-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@uzh-bf/design-system": "4.1.4",
"@uzh-bf/design-system": "4.1.6",
"next": "^15.3.4",
"react": "^19.1.0",
"react-dom": "^19.1.0",
Expand Down
10 changes: 10 additions & 0 deletions packages/next-config/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,15 @@ function getNextBaseConfig({
if (!isServer && isStaging) {
config.devtool = 'cheap-module-source-map'
}
// Configure webpack to resolve conditional exports correctly
if (isServer) {
// For server builds: prioritize 'node' condition for packages like file-type
// that have Node.js-specific exports (e.g., PayloadCMS's file-type dependency)
config.resolve.conditionNames = ['node', 'development', '...']
} else {
// For client builds: use standard conditions plus 'development' for local packages
config.resolve.conditionNames = ['development', '...']
}
return config
},
compress: true,
Expand All @@ -27,6 +36,7 @@ function getNextBaseConfig({
'@klicker-uzh/i18n',
'@klicker-uzh/util',
'@klicker-uzh/prisma',
'@uzh-bf/design-system',
],
eslint: {
ignoreDuringBuilds: true,
Expand Down
2 changes: 1 addition & 1 deletion packages/shared-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"@klicker-uzh/graphql": "workspace:*",
"@klicker-uzh/markdown": "workspace:*",
"@tailwindcss/postcss": "^4.1.11",
"@uzh-bf/design-system": "4.1.4",
"@uzh-bf/design-system": "4.1.6",
"dayjs": "^1.11.13",
"formik": "^2.4.6",
"js-cookie": "^3.0.5",
Expand Down
2 changes: 1 addition & 1 deletion packages/transactional/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"@react-email/components": "~0.0.25",
"@types/node": "^20.19.11",
"@types/react": "^19.1.8",
"@uzh-bf/design-system": "4.1.4",
"@uzh-bf/design-system": "4.1.6",
"lucide-react": "~0.522.0",
"react": "~19.1.0",
"react-email": "~3.0.1",
Expand Down
50 changes: 25 additions & 25 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

Loading