Skip to content

Commit 639f088

Browse files
merging all conflicts
2 parents ac67774 + e07ac94 commit 639f088

File tree

134 files changed

+21740
-819
lines changed

Some content is hidden

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

134 files changed

+21740
-819
lines changed

.github/workflows/analyze_comment.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,11 @@ on:
66
types:
77
- completed
88

9-
permissions: {}
10-
9+
permissions:
10+
contents: read
11+
issues: write
12+
pull-requests: write
13+
1114
jobs:
1215
comment:
1316
runs-on: ubuntu-latest

.github/workflows/discord_notify.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Discord Notify
22

33
on:
4-
pull_request:
4+
pull_request_target:
55
types: [opened, ready_for_review]
66

77
permissions: {}
@@ -14,7 +14,6 @@ jobs:
1414
contents: read
1515
with:
1616
actor: ${{ github.event.pull_request.user.login }}
17-
is_remote: true
1817

1918
notify:
2019
if: ${{ needs.check_maintainer.outputs.is_core_team == 'true' }}

.github/workflows/label_core_team_prs.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Label Core Team PRs
22

33
on:
4-
pull_request:
4+
pull_request_target:
55

66
permissions: {}
77

@@ -18,7 +18,6 @@ jobs:
1818
contents: read
1919
with:
2020
actor: ${{ github.event.pull_request.user.login }}
21-
is_remote: true
2221

2322
label:
2423
if: ${{ needs.check_maintainer.outputs.is_core_team == 'true' }}

next-env.d.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/// <reference types="next" />
22
/// <reference types="next/image-types/global" />
3-
/// <reference types="next/navigation-types/compat/navigation" />
43

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

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,13 @@
1515
"prettier:diff": "yarn nit:source",
1616
"lint-heading-ids": "node scripts/headingIdLinter.js",
1717
"fix-headings": "node scripts/headingIdLinter.js --fix",
18-
"ci-check": "npm-run-all prettier:diff --parallel lint tsc lint-heading-ids rss",
18+
"ci-check": "npm-run-all prettier:diff --parallel lint tsc lint-heading-ids rss deadlinks",
1919
"tsc": "tsc --noEmit",
2020
"start": "next start",
2121
"postinstall": "is-ci || husky install .husky",
2222
"check-all": "npm-run-all prettier lint:fix tsc rss",
23-
"rss": "node scripts/generateRss.js"
23+
"rss": "node scripts/generateRss.js",
24+
"deadlinks": "node scripts/deadLinkChecker.js"
2425
},
2526
"dependencies": {
2627
"@codesandbox/sandpack-react": "2.13.5",
@@ -30,7 +31,6 @@
3031
"@radix-ui/react-context-menu": "^2.1.5",
3132
"body-scroll-lock": "^3.1.3",
3233
"classnames": "^2.2.6",
33-
"date-fns": "^2.16.1",
3434
"debounce": "^1.2.1",
3535
"github-slugger": "^1.3.0",
3636
"next": "15.1.0",
@@ -62,6 +62,7 @@
6262
"autoprefixer": "^10.4.2",
6363
"babel-eslint": "10.x",
6464
"babel-plugin-react-compiler": "19.0.0-beta-e552027-20250112",
65+
"chalk": "4.1.2",
6566
"eslint": "7.x",
6667
"eslint-config-next": "12.0.3",
6768
"eslint-config-react-app": "^5.2.1",

postcss.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ module.exports = {
1717
},
1818
},
1919
},
20-
}
20+
};
75.6 KB
Binary file not shown.
64.9 KB
Binary file not shown.
407 KB
Loading
Binary file not shown.

0 commit comments

Comments
 (0)