Skip to content

Commit 64db5a2

Browse files
authored
hotfix: minor changes (#7127)
* hotfix: minor changes * Delete apps/site/.eslintignore Signed-off-by: Claudio W <[email protected]> * Delete packages/i18n/.eslintignore Signed-off-by: Claudio W <[email protected]> --------- Signed-off-by: Claudio W <[email protected]>
1 parent f69a421 commit 64db5a2

File tree

4 files changed

+2494
-2264
lines changed

4 files changed

+2494
-2264
lines changed

apps/site/.storybook/main.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const config: StorybookConfig = {
3434
webpack: async config => ({
3535
...config,
3636
// We want to conform as much as possible with our target settings
37-
target: 'browserslist',
37+
target: 'browserslist:development',
3838
// Performance Hints do not make sense on Storybook as it is bloated by design
3939
performance: { hints: false },
4040
// `nodevu` is a Node.js-specific package that requires Node.js modules
@@ -52,7 +52,8 @@ const config: StorybookConfig = {
5252
ignoreWarnings: [
5353
e =>
5454
e.message.includes('Critical dep') ||
55-
e.message.includes('was not found in'),
55+
e.message.includes('was not found in') ||
56+
e.message.includes('generated code contains'),
5657
],
5758
}),
5859
};

apps/site/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
},
1818
"scripts": {
1919
"scripts:release-post": "cross-env NODE_NO_WARNINGS=1 node scripts/release-post/index.mjs",
20-
"dev": "cross-env NODE_NO_WARNINGS=1 next dev --turbo",
20+
"dev": "cross-env SENTRY_SUPPRESS_TURBOPACK_WARNING=1 NODE_NO_WARNINGS=1 next dev --turbo",
2121
"serve": "npm run dev",
2222
"build": "cross-env NODE_NO_WARNINGS=1 next build",
2323
"start": "cross-env NODE_NO_WARNINGS=1 next start",
@@ -68,7 +68,7 @@
6868
"glob": "~11.0.0",
6969
"gray-matter": "~4.0.3",
7070
"next": "~14.2.14",
71-
"next-intl": "~3.20.0",
71+
"next-intl": "~3.21.1",
7272
"next-themes": "~0.3.0",
7373
"postcss": "~8.4.47",
7474
"postcss-calc": "~10.0.2",
@@ -104,14 +104,14 @@
104104
"@types/react-dom": "^18.3.0",
105105
"@types/semver": "~7.5.8",
106106
"eslint": "~9.10.0",
107-
"eslint-config-next": "~14.2.14",
107+
"eslint-config-next": "15.0.0-rc.1",
108108
"eslint-import-resolver-typescript": "~3.6.3",
109109
"eslint-plugin-import-x": "~4.3.1",
110110
"eslint-plugin-mdx": "~3.1.5",
111111
"eslint-plugin-no-relative-import-paths": "~1.5.5",
112112
"eslint-plugin-react": "~7.37.1",
113-
"eslint-plugin-react-hooks": "5.1.0-rc.0",
114-
"eslint-plugin-storybook": "0.9.0--canary.156.26b630a.0",
113+
"eslint-plugin-react-hooks": "5.0.0",
114+
"eslint-plugin-storybook": "0.10.0--canary.156.ce8985b.0",
115115
"handlebars": "4.7.8",
116116
"jest": "29.7.0",
117117
"jest-environment-jsdom": "29.7.0",

0 commit comments

Comments
 (0)