Skip to content

Commit f0f4e34

Browse files
authored
Merge pull request #410 from GoldElysium/feat/gura-xmas-2024
2 parents 7d2dcfc + e966956 commit f0f4e34

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+4490
-4564
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,6 @@ yarn-error.log*
4545

4646
# Sentry Config File
4747
.sentryclirc
48+
49+
# development files
50+
public/assets/dev/**

next.config.js

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,30 +4,29 @@
44
* @type {import('next').NextConfig}
55
**/
66
const nextConfig = {
7-
images: {
8-
loader: 'custom',
9-
loaderFile: './imageLoader.js',
10-
unoptimized: true,
11-
}
7+
images: {
8+
loader: 'custom', loaderFile: './imageLoader.js', unoptimized: true,
9+
}, webpack: {
10+
ignoreWarnings: [{module: /@opentelemetry\/instrumentation/, message: /Critical dependency/},]
11+
}
1212
};
1313

1414
// Injected content via Sentry wizard below
1515

1616
const { withSentryConfig } = require("@sentry/nextjs");
1717

1818
// Disable Sentry in development
19-
module.exports = process.env.NODE_ENV === 'production' ? withSentryConfig(
20-
nextConfig,
21-
{
19+
module.exports = process.env.NODE_ENV === 'production' ? withSentryConfig(nextConfig, {
2220
// For all available options, see:
2321
// https://github.com/getsentry/sentry-webpack-plugin#options
2422

2523
// Suppresses source map uploading logs during build
2624
silent: true,
25+
2726
org: "holoen-fans",
27+
2828
project: "hef-website",
29-
},
30-
{
29+
3130
// For all available options, see:
3231
// https://docs.sentry.io/platforms/javascript/guides/nextjs/manual-setup/
3332

@@ -45,5 +44,6 @@ module.exports = process.env.NODE_ENV === 'production' ? withSentryConfig(
4544
// https://docs.sentry.io/product/crons/
4645
// https://vercel.com/docs/cron-jobs
4746
automaticVercelMonitors: true,
48-
}
49-
) : nextConfig;
47+
48+
authToken: process.env.SENTRY_AUTH_TOKEN,
49+
}) : nextConfig;

package.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
]
1919
},
2020
"engines": {
21-
"node": ">=18.12.1 <21",
21+
"node": "^18 || ^20 || ^22",
2222
"pnpm": ">=8"
2323
},
2424
"dependencies": {
@@ -38,11 +38,11 @@
3838
"@pixi/react": "7.1.1",
3939
"@pixi/sound": "^5.2.3",
4040
"@pixi/text-html": "^7.4.2",
41-
"@radix-ui/react-dialog": "^1.1.1",
42-
"@radix-ui/react-dropdown-menu": "^2.1.1",
43-
"@radix-ui/react-select": "^2.1.1",
44-
"@radix-ui/react-switch": "^1.1.0",
45-
"@sentry/nextjs": "^7.118.0",
41+
"@radix-ui/react-dialog": "^1.1.2",
42+
"@radix-ui/react-dropdown-menu": "^2.1.2",
43+
"@radix-ui/react-select": "^2.1.2",
44+
"@radix-ui/react-switch": "^1.1.1",
45+
"@sentry/nextjs": "^8.40.0",
4646
"@tripetto/block-calculator": "^4.0.6",
4747
"@tripetto/block-checkbox": "^6.0.2",
4848
"@tripetto/block-checkboxes": "^7.1.1",
@@ -74,9 +74,9 @@
7474
"daisyui": "4.10.1",
7575
"date-fns": "3.6.0",
7676
"escape-html": "1.0.3",
77-
"framer-motion": "^11.3.24",
77+
"framer-motion": "^11.11.17",
7878
"hamburger-react": "^2.5.1",
79-
"i18next": "^23.12.2",
79+
"i18next": "^23.16.8",
8080
"i18next-resources-to-backend": "^1.2.1",
8181
"immer": "^10.1.1",
8282
"lodash": "4.17.21",
@@ -88,25 +88,25 @@
8888
"phaser3-rex-plugins": "1.1.85",
8989
"pixi-scrollbox": "^2.3.1",
9090
"pixi-tagged-text": "^3.15.1",
91-
"pixi-viewport": "^5.0.3",
92-
"pixi.js": "^7.4.2",
91+
"pixi-viewport": "^6.0.3",
92+
"pixi.js": "7.4.2",
9393
"react": "18.2.0",
9494
"react-dom": "18.2.0",
9595
"react-i18next": "14.1.0",
9696
"react-infinite-scroll-component": "6.1.0",
9797
"react-player": "2.16.0",
98-
"react-select": "^5.8.0",
98+
"react-select": "^5.8.3",
9999
"react-simple-maps": "^3.0.0",
100100
"server-only": "^0.0.1",
101101
"styled-components": "6.1.8",
102-
"tslib": "^2.6.3",
102+
"tslib": "^2.8.1",
103103
"webfontloader": "1.6.28",
104-
"zustand": "^4.5.4"
104+
"zustand": "^4.5.5"
105105
},
106106
"devDependencies": {
107107
"@commitlint/cli": "19.2.2",
108108
"@commitlint/config-conventional": "19.2.2",
109-
"@next/eslint-plugin-next": "^14.2.5",
109+
"@next/eslint-plugin-next": "^14.2.18",
110110
"@pixi/graphics": "^7.4.2",
111111
"@storybook/addon-essentials": "8.0.8",
112112
"@storybook/addon-interactions": "8.0.8",
@@ -129,13 +129,13 @@
129129
"eslint-config-airbnb": "19.0.4",
130130
"eslint-config-airbnb-typescript": "18.0.0",
131131
"eslint-config-next": "14.2.1",
132-
"eslint-import-resolver-typescript": "^3.6.1",
132+
"eslint-import-resolver-typescript": "^3.6.3",
133133
"eslint-plugin-import": "2.29.1",
134134
"eslint-plugin-jsx-a11y": "6.8.0",
135135
"eslint-plugin-react": "7.34.1",
136136
"eslint-plugin-react-hooks": "4.6.0",
137137
"eslint-plugin-storybook": "0.8.0",
138-
"eslint-plugin-tailwindcss": "^3.17.4",
138+
"eslint-plugin-tailwindcss": "^3.17.5",
139139
"husky": "9.0.11",
140140
"lint-staged": "15.2.2",
141141
"phaser3spectorjs": "^0.0.8",

0 commit comments

Comments
 (0)