Skip to content

Commit 294ecea

Browse files
committed
Update deps
1 parent b421080 commit 294ecea

File tree

3 files changed

+46
-39
lines changed

3 files changed

+46
-39
lines changed

package-lock.json

Lines changed: 17 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 18 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -15,47 +15,46 @@
1515
"dependencies": {
1616
"@emailjs/browser": "^4.4.1",
1717
"@gsap/react": "^2.1.2",
18-
"@react-three/drei": "^9.121.4",
19-
"@react-three/fiber": "^8.17.14",
18+
"@react-three/drei": "^9.122.0",
19+
"@react-three/fiber": "^8.18.0",
2020
"@types/three": "^0.170.0",
2121
"framer-motion": "^11.18.2",
2222
"gsap": "^3.12.7",
2323
"leva": "^0.9.36",
2424
"maath": "^0.10.8",
25-
"prettier": "^3.4.2",
25+
"prettier": "^3.5.3",
2626
"react": "^18.3.1",
2727
"react-dom": "^18.3.1",
28-
"react-globe.gl": "^2.31.1",
29-
"react-responsive": "^10.0.0",
30-
"react-router-dom": "^7.1.5",
31-
"styled-components": "^6.1.14",
28+
"react-globe.gl": "^2.33.2",
29+
"react-responsive": "^10.0.1",
30+
"react-router-dom": "^7.5.0",
31+
"styled-components": "^6.1.17",
3232
"three": "^0.171.0",
33-
"three-stdlib": "^2.35.13"
33+
"three-stdlib": "^2.35.14"
3434
},
3535
"devDependencies": {
3636
"@eslint/js": "^9.16.0",
3737
"@react-three/eslint-plugin": "^0.1.2",
38-
"@types/react": "^18.3.18",
39-
"@types/react-dom": "^18.3.5",
38+
"@types/react": "^18.3.20",
39+
"@types/react-dom": "^18.3.6",
4040
"@vitejs/plugin-react": "^4.3.4",
41-
"autoprefixer": "^10.4.20",
42-
"eslint": "^9.19.0",
43-
"eslint-plugin-react": "^7.37.4",
44-
"eslint-plugin-react-hooks": "^5.1.0",
45-
"eslint-plugin-react-refresh": "^0.4.18",
41+
"autoprefixer": "^10.4.21",
42+
"eslint-plugin-react": "^7.37.5",
43+
"eslint-plugin-react-hooks": "^5.2.0",
44+
"eslint-plugin-react-refresh": "^0.4.19",
4645
"gh-pages": "^6.3.0",
47-
"globals": "^15.14.0",
48-
"postcss": "^8.5.1",
46+
"globals": "^15.15.0",
47+
"postcss": "^8.5.3",
4948
"tailwindcss": "^3.4.17",
50-
"vite": "^6.0.11"
49+
"vite": "^6.2.5"
5150
},
5251
"overrides": {
5352
"inflight": "lru-cache@^7.14.0",
5453
"rimraf": "^4.0.0",
5554
"glob": "^9.0.0",
5655
"@humanwhocodes/config-array": "@eslint/config-array@^1.0.0",
5756
"@humanwhocodes/object-schema": "@eslint/object-schema@^1.0.0",
58-
"eslint": "^9.19.0",
57+
"eslint": "^9.24.0",
5958
"three-mesh-bvh": "^0.8.0"
6059
}
6160
}

vite.config.js

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,16 @@ export default defineConfig({
1414
}
1515
},
1616
},
17+
onwarn(warning, warn) {
18+
if (warning.code === 'EVAL' &&
19+
warning.loc &&
20+
warning.loc.file &&
21+
warning.loc.file.includes('node_modules/three-stdlib/libs/lottie.js')) {
22+
return;
23+
}
24+
warn(warning);
25+
}
1726
},
18-
chunkSizeWarningLimit: 3000,
27+
chunkSizeWarningLimit: 5000,
1928
},
20-
});
29+
});

0 commit comments

Comments
 (0)