Skip to content

Commit 10e9215

Browse files
authored
Merge branch 'main' into docs/ko-translation
2 parents ad2fef3 + 1c12dc1 commit 10e9215

File tree

108 files changed

+3702
-2535
lines changed

Some content is hidden

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

108 files changed

+3702
-2535
lines changed

.editorconfig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,3 @@ charset = utf-8
55
end_of_line = lf
66
insert_final_newline = true
77
indent_style = space
8-
trim_trailing_whitespace = true

.env.production

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
NEXT_PUBLIC_GA_TRACKING_ID = 'G-B1E83PJ3RT'
1+
NEXT_PUBLIC_GA_TRACKING_ID = 'G-C4MKP7MN1V'

.eslintrc

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,13 @@
22
"root": true,
33
"extends": "next/core-web-vitals",
44
"parser": "@typescript-eslint/parser",
5-
"plugins": ["@typescript-eslint"],
5+
"plugins": ["@typescript-eslint", "eslint-plugin-react-compiler"],
66
"rules": {
77
"no-unused-vars": "off",
8-
"@typescript-eslint/no-unused-vars": ["error", { "varsIgnorePattern": "^_" }],
9-
"react-hooks/exhaustive-deps": "error"
8+
"@typescript-eslint/no-unused-vars": ["error", {"varsIgnorePattern": "^_"}],
9+
"react-hooks/exhaustive-deps": "error",
10+
"react/no-unknown-property": ["error", {"ignore": ["meta"]}],
11+
"react-compiler/react-compiler": "error"
1012
},
1113
"env": {
1214
"node": true,

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: [lumirlumir]
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: 번역 필요
3+
about: 번역이 필요한 문서에 대해 이 템플릿을 사용해주세요
4+
title: '[번역 필요]: '
5+
labels: 'need translation'
6+
assignees: ''
7+
---
8+
9+
## Summary
10+
11+
<!-- 번역이 필요한 부분의 요약 -->
12+
13+
## Page
14+
15+
<!-- 번역이 필요한 문서의 페이지 -->
16+
<!-- 예시: https://ko.react.dev/reference/react/useState#parameters -->
17+
18+
## Details
19+
20+
<!-- 번역이 필요한 부분의 상세 내용 -->

.github/workflows/discord_notify.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

next-env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
/// <reference types="next/image-types/global" />
33

44
// NOTE: This file should not be edited
5-
// see https://nextjs.org/docs/basic-features/typescript for more information.
5+
// see https://nextjs.org/docs/pages/api-reference/config/typescript for more information.

next.config.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,8 @@ const nextConfig = {
99
pageExtensions: ['jsx', 'js', 'ts', 'tsx', 'mdx', 'md'],
1010
reactStrictMode: true,
1111
experimental: {
12-
// TODO: Remove after https://github.com/vercel/next.js/issues/49355 is fixed
13-
appDir: false,
1412
scrollRestoration: true,
15-
legacyBrowsers: false,
13+
reactCompiler: true,
1614
},
1715
env: {},
1816
webpack: (config, {dev, isServer, ...options}) => {

package.json

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"private": true,
3-
"packageManager": "yarn@1.22.22",
43
"license": "CC",
54
"scripts": {
65
"analyze": "ANALYZE=true next build",
@@ -17,7 +16,7 @@
1716
"ci-check": "npm-run-all prettier:diff --parallel lint tsc lint-heading-ids rss lint-editorconfig",
1817
"tsc": "tsc --noEmit",
1918
"start": "next start",
20-
"postinstall": "patch-package && (is-ci || husky install .husky)",
19+
"postinstall": "is-ci || husky install .husky",
2120
"check-all": "npm-run-all prettier lint:fix tsc rss",
2221
"rss": "node scripts/generateRss.js",
2322
"cache-reset": "rm -rf node_modules/.cache && rm -rf .next && yarn cache clean",
@@ -28,21 +27,21 @@
2827
},
2928
"dependencies": {
3029
"@codesandbox/sandpack-react": "2.13.5",
31-
"@docsearch/css": "^3.6.1",
32-
"@docsearch/react": "^3.6.1",
30+
"@docsearch/css": "^3.8.3",
31+
"@docsearch/react": "^3.8.3",
3332
"@headlessui/react": "^1.7.0",
3433
"@radix-ui/react-context-menu": "^2.1.5",
3534
"body-scroll-lock": "^3.1.3",
3635
"classnames": "^2.2.6",
3736
"date-fns": "^2.16.1",
3837
"debounce": "^1.2.1",
3938
"github-slugger": "^1.3.0",
40-
"next": "^13.4.1",
39+
"next": "15.1.0",
4140
"next-remote-watch": "^1.0.0",
4241
"parse-numeric-range": "^1.2.0",
43-
"react": "^0.0.0-experimental-16d053d59-20230506",
42+
"react": "^19.0.0",
4443
"react-collapsed": "4.0.4",
45-
"react-dom": "^0.0.0-experimental-16d053d59-20230506",
44+
"react-dom": "^19.0.0",
4645
"remark-frontmatter": "^4.0.1",
4746
"remark-gfm": "^3.0.1"
4847
},
@@ -58,21 +57,23 @@
5857
"@types/mdx-js__react": "^1.5.2",
5958
"@types/node": "^14.6.4",
6059
"@types/parse-numeric-range": "^0.0.1",
61-
"@types/react": "^18.0.9",
62-
"@types/react-dom": "^18.0.5",
60+
"@types/react": "^19.0.0",
61+
"@types/react-dom": "^19.0.0",
6362
"@typescript-eslint/eslint-plugin": "^5.36.2",
6463
"@typescript-eslint/parser": "^5.36.2",
6564
"asyncro": "^3.0.0",
6665
"autoprefixer": "^10.4.2",
6766
"babel-eslint": "10.x",
68-
"editorconfig-checker": "^6.0.0",
67+
"editorconfig-checker": "^6.0.1",
68+
"babel-plugin-react-compiler": "19.0.0-beta-e552027-20250112",
6969
"eslint": "7.x",
7070
"eslint-config-next": "12.0.3",
7171
"eslint-config-react-app": "^5.2.1",
7272
"eslint-plugin-flowtype": "4.x",
7373
"eslint-plugin-import": "2.x",
7474
"eslint-plugin-jsx-a11y": "6.x",
7575
"eslint-plugin-react": "7.x",
76+
"eslint-plugin-react-compiler": "^19.0.0-beta-e552027-20250112",
7677
"eslint-plugin-react-hooks": "^0.0.0-experimental-fabef7a6b-20221215",
7778
"fs-extra": "^9.0.1",
7879
"globby": "^11.0.1",
@@ -84,7 +85,6 @@
8485
"metro-cache": "0.72.2",
8586
"mocha": "^10.6.0",
8687
"npm-run-all": "^4.1.5",
87-
"patch-package": "^6.2.2",
8888
"postcss": "^8.4.5",
8989
"postcss-flexbugs-fixes": "4.2.1",
9090
"postcss-preset-env": "^6.7.0",
@@ -104,7 +104,7 @@
104104
"textlint-filter-rule-comments": "^1.2.2",
105105
"textlint-rule-allowed-uris": "^1.0.7",
106106
"textlint-tester": "^14.0.4",
107-
"typescript": "^4.0.2",
107+
"typescript": "^5.7.2",
108108
"unist-util-visit": "^2.0.3",
109109
"webpack-bundle-analyzer": "^4.5.0"
110110
},
@@ -115,5 +115,6 @@
115115
"budget": null,
116116
"budgetPercentIncreaseRed": 10,
117117
"showDetails": true
118-
}
118+
},
119+
"packageManager": "yarn@1.22.22"
119120
}

patches/next+13.4.1.patch

Lines changed: 0 additions & 22 deletions
This file was deleted.

0 commit comments

Comments
 (0)