Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
chore(deps): bump react 18.3.0-canary-1fdacbefd-20230630
  • Loading branch information
styfle committed Jun 30, 2023
commit ddfa877501f5daaab22939fd46baec3c6d1724f5
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -189,14 +189,14 @@
"random-seed": "0.3.0",
"react": "18.2.0",
"react-17": "npm:[email protected]",
"react-builtin": "npm:[email protected]1cea38448-20230530",
"react-builtin": "npm:[email protected]1fdacbefd-20230630",
"react-dom": "18.2.0",
"react-dom-17": "npm:[email protected]",
"react-dom-builtin": "npm:[email protected]1cea38448-20230530",
"react-dom-experimental-builtin": "npm:[email protected]1cea38448-20230530",
"react-experimental-builtin": "npm:[email protected]1cea38448-20230530",
"react-server-dom-webpack": "18.3.0-canary-1cea38448-20230530",
"react-server-dom-webpack-experimental": "npm:[email protected]1cea38448-20230530",
"react-dom-builtin": "npm:[email protected]1fdacbefd-20230630",
"react-dom-experimental-builtin": "npm:[email protected]1fdacbefd-20230630",
"react-experimental-builtin": "npm:[email protected]1fdacbefd-20230630",
"react-server-dom-webpack": "18.3.0-canary-1fdacbefd-20230630",
"react-server-dom-webpack-experimental": "npm:[email protected]1fdacbefd-20230630",
"react-ssr-prepass": "1.0.8",
"react-virtualized": "9.22.3",
"relay-compiler": "13.0.2",
Expand All @@ -206,8 +206,8 @@
"resolve-from": "5.0.0",
"sass": "1.54.0",
"satori": "0.9.1",
"scheduler-builtin": "npm:[email protected]1cea38448-20230530",
"scheduler-experimental-builtin": "npm:[email protected]1cea38448-20230530",
"scheduler-builtin": "npm:[email protected]1fdacbefd-20230630",
"scheduler-experimental-builtin": "npm:[email protected]1fdacbefd-20230630",
"seedrandom": "3.0.5",
"selenium-webdriver": "4.0.0-beta.4",
"semver": "7.3.7",
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ if (process.env.NODE_ENV !== "production") {

var React = require("next/dist/compiled/react-experimental");

var ReactVersion = '18.3.0-experimental-1cea38448-20230530';
var ReactVersion = '18.3.0-experimental-1fdacbefd-20230630';

var Internals = {
usingClientEntryPoint: false,
Expand Down Expand Up @@ -157,6 +157,13 @@ function createPortal() {
}
function flushSync() {
throw new Error('flushSync was called on the server. This is likely caused by a' + ' function being called during render or in module scope that was' + ' intended to be called from an effect or event handler. Update your' + ' to not call flushSync no the server.');
} // on the server we just call the callback because there is
// not update mechanism. Really this should not be called on the
// server but since the semantics are generally clear enough we
// can provide this trivial implementation.

function batchedUpdates(fn, a) {
return fn(a);
}

exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = Internals;
Expand All @@ -167,6 +174,7 @@ exports.preconnect = preconnect;
exports.prefetchDNS = prefetchDNS;
exports.preinit = preinit;
exports.preload = preload;
exports.unstable_batchedUpdates = batchedUpdates;
exports.version = ReactVersion;
})();
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading