Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
e245b77
[be] Add deadlinks script (#7879)
poteto Jul 18, 2025
d52b3ec
Fix deadlinks (#7880)
poteto Jul 18, 2025
8ad6c60
Revert "Fix deadlinks (#7880)" (#7881)
poteto Jul 21, 2025
79eb0c5
Update deadlinks script to take into account redirects (#7882)
poteto Jul 21, 2025
aa5448d
Fix deadlinks take 2 (#7883)
poteto Jul 21, 2025
b165e71
[compiler] Rewrite React Compiler Docs (#7868)
poteto Jul 21, 2025
d7160a8
[compiler] Fix misleading code example (#7889)
poteto Jul 21, 2025
b462664
[compiler] Flesh out incremental adoption intro more (#7890)
poteto Jul 21, 2025
b6450e8
[compiler] Add note about gating evaluation (#7891)
poteto Jul 21, 2025
e07ac94
Remove non-existent meetup group (Edinburgh, Scotland) (#7895)
melanterite Jul 25, 2025
f98b905
merging all conflicts
react-translations-bot Aug 4, 2025
4e0cc86
Update add-react-to-an-existing-project.md
nafistiham Sep 2, 2025
65ca217
Update synchronizing-with-effects.md
nafistiham Sep 3, 2025
fb79d4d
Update createRoot.md
nafistiham Sep 3, 2025
4a9e6af
Update index.md
nafistiham Sep 3, 2025
601b82a
Update option.md
nafistiham Sep 3, 2025
8630997
Update createPortal.md
nafistiham Sep 3, 2025
745f6a7
Update index.md
nafistiham Sep 3, 2025
6328c18
Update useInsertionEffect.md
nafistiham Sep 3, 2025
1c27bae
Fix dead link in uselayouteffect
nafistiham Sep 3, 2025
9182ce4
Fix dead link in useSyncExternalStore
nafistiham Sep 3, 2025
1504c82
Fix dead link in renderToReadableStream
nafistiham Sep 3, 2025
c889661
Fix dead link in rederToPipeableStream
nafistiham Sep 3, 2025
3ef3531
Merge branch 'main' into sync-e07ac94b
nafistiham Sep 3, 2025
e93de3e
Fixed merge conflict in memo.md
nafistiham Sep 3, 2025
0e60cb2
Update memo file for conflict resolution
nafistiham Sep 4, 2025
cc29ca7
Fix deadlink in createportal
nafistiham Sep 4, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,13 @@
"prettier:diff": "yarn nit:source",
"lint-heading-ids": "node scripts/headingIdLinter.js",
"fix-headings": "node scripts/headingIdLinter.js --fix",
"ci-check": "npm-run-all prettier:diff --parallel lint tsc lint-heading-ids rss",
"ci-check": "npm-run-all prettier:diff --parallel lint tsc lint-heading-ids rss deadlinks",
"tsc": "tsc --noEmit",
"start": "next start",
"postinstall": "is-ci || husky install .husky",
"check-all": "npm-run-all prettier lint:fix tsc rss",
"rss": "node scripts/generateRss.js"
"rss": "node scripts/generateRss.js",
"deadlinks": "node scripts/deadLinkChecker.js"
},
"dependencies": {
"@codesandbox/sandpack-react": "2.13.5",
Expand Down Expand Up @@ -61,6 +62,7 @@
"autoprefixer": "^10.4.2",
"babel-eslint": "10.x",
"babel-plugin-react-compiler": "19.0.0-beta-e552027-20250112",
"chalk": "4.1.2",
"eslint": "7.x",
"eslint-config-next": "12.0.3",
"eslint-config-react-app": "^5.2.1",
Expand Down
Loading