Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(react): update types for react, react-dom, and react-is #17727

Merged
merged 1 commit into from
Jun 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
17 changes: 17 additions & 0 deletions packages/react/migrations.json
Original file line number Diff line number Diff line change
Expand Up @@ -933,6 +933,23 @@
"alwaysAddToPackageJson": false
}
}
},
"16.4.0-beta.11": {
"version": "16.4.0-beta.11",
"packages": {
"@types/react": {
"version": "18.2.13",
"alwaysAddToPackageJson": false
},
"@types/react-dom": {
"version": "18.2.6",
"alwaysAddToPackageJson": false
},
"@types/react-is": {
"version": "18.2.1",
"alwaysAddToPackageJson": false
}
}
}
}
}
6 changes: 3 additions & 3 deletions packages/react/src/utils/versions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ export const reactDomVersion = '18.2.0';
export const reactIsVersion = '18.2.0';
export const swcLoaderVersion = '0.1.15';
export const babelLoaderVersion = '^9.1.2';
export const typesReactVersion = '18.2.12';
export const typesReactDomVersion = '18.2.5';
export const typesReactIsVersion = '18.2.0';
export const typesReactVersion = '18.2.13';
export const typesReactDomVersion = '18.2.6';
export const typesReactIsVersion = '18.2.1';

export const typesNodeVersion = '18.14.2';

Expand Down