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

chore(deps): bump next to v15 #170

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
21 changes: 15 additions & 6 deletions next.config.mjs → next.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { fileURLToPath } from 'node:url';
import type { NextConfig } from 'next';

const headers = [
{
Expand All @@ -23,13 +24,11 @@ const headers = [
},
];

/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
instrumentationHook: true,
},
const nextConfig: NextConfig = {
sassOptions: {
includePaths: [fileURLToPath(new URL('src/', import.meta.url))],
quietDeps: true,
silenceDeprecations: ['mixed-decls', 'legacy-js-api'],
},
async headers() {
return [
Expand All @@ -40,7 +39,7 @@ const nextConfig = {
},
webpack(config) {
// Grab the existing rule that handles SVG imports
const fileLoaderRule = config.module.rules.find((rule) =>
const fileLoaderRule = config.module.rules.find((rule: { test?: RegExp }) =>
rule.test?.test?.('.svg'),
);

Expand Down Expand Up @@ -83,6 +82,16 @@ const nextConfig = {

return config;
},
experimental: {
turbo: {
rules: {
'*.svg': {
loaders: ['@svgr/webpack'],
as: '*.ts',
},
},
},
},
output: 'standalone',
};

Expand Down
33 changes: 19 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
},
"dependencies": {
"@ai-zen/node-fetch-event-source": "^2.1.4",
"@carbon/grid": "^11.22.0",
"@carbon/grid": "^11.30.0",
"@carbon/layout": "^11.28.0",
"@carbon/motion": "^11.22.0",
"@carbon/react": "^1.64.0",
"@carbon/motion": "^11.24.0",
"@carbon/react": "^1.73.0",
"@carbon/styles": "^1.68.0",
"@dhmk/zustand-lens": "^5.0.0",
"@floating-ui/react": "^0.26.22",
Expand All @@ -48,7 +48,7 @@
"clsx": "^2.1.0",
"deep-object-diff": "^1.1.9",
"fetch-retry": "^6.0.0",
"framer-motion": "^11.3.24",
"framer-motion": "^11.16.0",
"http-proxy": "^1.18.1",
"http-status-codes": "^2.3.0",
"immer": "^10.0.4",
Expand All @@ -60,14 +60,14 @@
"lottie-react": "^2.4.0",
"mdast-util-to-hast": "^13.1.0",
"mime-types": "^2.1.35",
"next": "14.2.22",
"next": "15.1.3",
"next-auth": "5.0.0-beta.25",
"next-nprogress-bar": "^2.3.13",
"openapi-fetch": "0.9.3",
"pluralize": "^8.0.0",
"react": "^18",
"react": "18.3.1",
"react-aria": "^3.33.0",
"react-dom": "^18",
"react-dom": "18.3.1",
"react-dropzone": "^14.3.5",
"react-error-boundary": "^4.1.2",
"react-hook-form": "^7.51.4",
Expand Down Expand Up @@ -99,32 +99,37 @@
"@types/lodash": "^4.17.4",
"@types/mdast": "^4.0.4",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react": "19.0.3",
"@types/react-dom": "19.0.2",
"@types/react-resizable": "^3.0.8",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/uuid": "^9.0.8",
"@typescript-eslint/parser": "^8.0.0",
"bee-agent-framework": "^0.0.16",
"cross-var": "^1.1.0",
"dotenv-cli": "^7.4.2",
"eslint": "^8",
"eslint-config-next": "14.2.5",
"eslint": "^9",
"eslint-config-next": "15.1.3",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"release-it": "^17.10.0",
"sass": "^1.77.4",
"stylelint": "^16.3.1",
"sass": "^1.83.1",
"stylelint": "^16.12.0",
"stylelint-config-css-modules": "^4.4.0",
"stylelint-config-recommended-scss": "^14.0.0",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-plugin-logical-css": "^1.2.1",
"typescript": "^5"
},
"packageManager": "[email protected]+sha512.140036830124618d624a2187b50d04289d5a087f326c9edfc0ccd733d76c4f52c3a313d4fc148794a2a9d81553016004e6742e8cf850670268a7387fc220c903",
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
},
"overrides": {
"@types/react": "19.0.3",
"@types/react-dom": "19.0.2"
}
}
}
Loading
Loading