Skip to content

Commit 036594f

Browse files
authored
Merge pull request #13 from junekimdev/hotfix-normalizer
Hotfix normalizer
2 parents 660657c + 55c753e commit 036594f

File tree

5 files changed

+246
-254
lines changed

5 files changed

+246
-254
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License
22

3-
Copyright (c) 2024 June Kim (<https://junekim.xyz>)
3+
Copyright (c) 2023-2025 June Kim (<https://junekim.xyz>)
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,11 @@ NEXT_PUBLIC_API_URL=http://api.domain.com
8080
- Package management: Webpack (included in NextJS)
8181
- Transpiler: Speedy Web Compiler (included in NextJS)
8282
- State management (client): Jotai
83-
- State management (server): TanStack Query
83+
- State management (data-fetch): TanStack Query
8484
- HTTP interface: fetch API (part of WHATWG Web Standard)
8585
- JavaScript Testing Framework: Jest
8686
- React Testing Library: @testing-library/react
87-
- Browser style normalization script: Modern-normalize
87+
- Browser style normalization script: Normalize
8888
- Stylesheet preprocessor: SCSS
8989
- Stylesheet postprocessor: Postcss (included in NextJS)
9090
- Postcss plugin: Autoprefixer (included in NextJS)
@@ -106,10 +106,8 @@ Root
106106
├── index.ts
107107
├── eachComponent.module.scss
108108
├── eachComponentInteractor.tsx
109-
├── eachComponentStates.ts
110109
├── eachComponentPresenter.tsx
111-
├── eachComponentViewName.tsx
112-
└── eachComponentType.ts
110+
└── eachComponentViewName.tsx
113111
├── controllers
114112
├── index.ts
115113
├── apiURLs.ts

package.json

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,33 +14,32 @@
1414
"start": "next start"
1515
},
1616
"dependencies": {
17-
"@tanstack/react-query": "^5.64.2",
18-
"jotai": "^2.11.1",
19-
"modern-normalize": "^3.0.1",
17+
"@tanstack/react-query": "^5.65.1",
18+
"jotai": "^2.11.2",
2019
"next": "^15.1.6",
2120
"react": "^19.0.0",
2221
"react-dom": "^19.0.0",
2322
"sass": "^1.83.4",
2423
"sharp": "^0.33.3"
2524
},
2625
"devDependencies": {
27-
"@eslint/js": "^9.18.0",
26+
"@eslint/js": "^9.19.0",
2827
"@next/eslint-plugin-next": "^15.1.6",
29-
"@stylistic/eslint-plugin": "^2.13.0",
30-
"@tanstack/react-query-devtools": "^5.64.2",
28+
"@stylistic/eslint-plugin": "^3.0.1",
29+
"@tanstack/react-query-devtools": "^5.65.1",
3130
"@testing-library/react": "^16.2.0",
32-
"@types/node": "^22.10.10",
31+
"@types/node": "^22.12.0",
3332
"@types/react": "^19.0.8",
3433
"@types/react-dom": "^19.0.3",
3534
"ejs": "^3.1.9",
36-
"eslint": "^9.18.0",
35+
"eslint": "^9.19.0",
3736
"eslint-plugin-react": "^7.37.4",
3837
"eslint-plugin-react-hooks": "^5.1.0",
3938
"jest": "^29.7.0",
4039
"jest-environment-jsdom": "^29.7.0",
4140
"prettier": "^3.4.2",
4241
"typescript": "^5.7.3",
43-
"typescript-eslint": "^8.21.0"
42+
"typescript-eslint": "^8.22.0"
4443
},
4544
"browserslist": {
4645
"production": [

pages/global.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@use '../components/theme.scss';
2-
@import '../node_modules/modern-normalize/modern-normalize.css';
3-
@import 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css';
2+
@import 'https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css';
3+
@import 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css';
44
//@import 'https://fonts.googleapis.com/css?family=Noto+Sans+KR&display=swap';
55

66
*,

0 commit comments

Comments
 (0)