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

Update precompiled react to next channel #41708

Merged
merged 2 commits into from Oct 24, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -178,11 +178,11 @@
"random-seed": "0.3.0",
"react": "18.2.0",
"react-17": "npm:react@17.0.2",
"react-builtin": "npm:react@0.0.0-experimental-1d3fc9c9c-20221023",
"react-builtin": "npm:react@18.3.0-next-e7c5af45c-20221023",
"react-dom": "18.2.0",
"react-dom-17": "npm:react-dom@17.0.2",
"react-dom-builtin": "npm:react-dom@0.0.0-experimental-1d3fc9c9c-20221023",
"react-server-dom-webpack": "0.0.0-experimental-1d3fc9c9c-20221023",
"react-dom-builtin": "npm:react-dom@18.3.0-next-e7c5af45c-20221023",
"react-server-dom-webpack": "18.3.0-next-e7c5af45c-20221023",
"react-ssr-prepass": "1.0.8",
"react-virtualized": "9.22.3",
"relay-compiler": "13.0.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/next/client/app-index.tsx
Expand Up @@ -3,7 +3,7 @@ import '../build/polyfills/polyfill-module'
// @ts-ignore react-dom/client exists when using React 18
import ReactDOMClient from 'react-dom/client'
// TODO-APP: change to React.use once it becomes stable
import React, { experimental_use as use } from 'react'
huozhi marked this conversation as resolved.
Show resolved Hide resolved
import React, { use } from 'react'
import { createFromReadableStream } from 'next/dist/compiled/react-server-dom-webpack/client'

import measureWebVitals from './performance-relayer'
Expand Down
2 changes: 1 addition & 1 deletion packages/next/client/components/layout-router.tsx
Expand Up @@ -5,7 +5,7 @@ import React, {
useEffect,
useRef,
// TODO-APP: change to React.use once it becomes stable
experimental_use as use,
use,
huozhi marked this conversation as resolved.
Show resolved Hide resolved
} from 'react'
import type {
ChildProp,
Expand Down