Skip to content

Commit 0255755

Browse files
committed
Update project
1 parent 8fc91c7 commit 0255755

File tree

4 files changed

+318
-506
lines changed

4 files changed

+318
-506
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/setup-node@v4
1313
with:
1414
node-version: lts/*
15-
- uses: pnpm/action-setup@v3
15+
- uses: pnpm/action-setup@v4
1616
with:
1717
version: 9
1818
- id: get-store-path

next.config.mjs renamed to next.config.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
/** @type {import('next').NextConfig} */
2-
const nextConfig = {
1+
import type { NextConfig } from "next";
2+
3+
const nextConfig: NextConfig = {
34
modularizeImports: {
45
lodash: {
56
transform: "lodash/{{member}}",

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "visualization",
33
"version": "1.0.0",
44
"private": true,
5-
"packageManager": "pnpm@9.12.2+sha512.22721b3a11f81661ae1ec68ce1a7b879425a1ca5b991c975b074ac220b187ce56c708fe5db69f4c962c989452eee76c82877f4ee80f474cebd61ee13461b6228",
5+
"packageManager": "pnpm@9.12.3+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee",
66
"scripts": {
77
"dev": "next dev --turbo",
88
"build": "next build",
@@ -16,26 +16,26 @@
1616
"@tailwindcss/typography": "0.5.15",
1717
"@types/d3": "7.4.3",
1818
"@types/lodash-es": "4.17.12",
19-
"@types/node": "22.7.8",
20-
"@types/react": "18.3.11",
19+
"@types/node": "22.8.4",
20+
"@types/react": "18.3.12",
2121
"@types/react-dom": "18.3.1",
2222
"autoprefixer": "10.4.20",
23-
"babel-plugin-react-compiler": "19.0.0-beta-8a03594-20241020",
23+
"babel-plugin-react-compiler": "19.0.0-beta-6fc168f-20241025",
2424
"csv-parse": "5.5.6",
2525
"d3": "7.9.0",
2626
"dayjs": "1.11.13",
2727
"eslint": "9.13.0",
28-
"eslint-config-next": "15.0.1",
28+
"eslint-config-next": "15.0.2",
2929
"eslint-config-prettier": "9.1.0",
30-
"eslint-plugin-react-compiler": "19.0.0-beta-8a03594-20241020",
30+
"eslint-plugin-react-compiler": "19.0.0-beta-6fc168f-20241025",
3131
"fs-extra": "11.2.0",
3232
"fuse.js": "7.0.0",
3333
"lodash-es": "4.17.21",
34-
"next": "15.0.1",
34+
"next": "15.0.2",
3535
"postcss": "8.4.47",
3636
"prettier": "3.3.3",
37-
"react": "19.0.0-rc-45804af1-20241021",
38-
"react-dom": "19.0.0-rc-45804af1-20241021",
37+
"react": "19.0.0-rc-0bc30748-20241028",
38+
"react-dom": "19.0.0-rc-0bc30748-20241028",
3939
"react-popper": "2.3.0",
4040
"tailwindcss": "3.4.14",
4141
"typescript": "5.6.3"

0 commit comments

Comments
 (0)