Skip to content
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
1 change: 1 addition & 0 deletions packages/next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,7 @@
"querystring-es3": "0.2.1",
"raw-body": "2.4.1",
"react-refresh": "0.12.0",
"recast": "0.23.11",
"regenerator-runtime": "0.13.4",
"sass-loader": "15.0.0",
"schema-utils2": "npm:[email protected]",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,15 @@
"use strict";
"production" !== process.env.NODE_ENV &&
(function () {
// This is a patch added by Next.js
const setTimeoutOrImmediate =
typeof globalThis["set" + "Immediate"] === "function" &&
// edge runtime sandbox defines a stub for setImmediate
// (see 'addStub' in packages/next/src/server/web/sandbox/context.ts)
// but it's made non-enumerable, so we can detect it
globalThis.propertyIsEnumerable("setImmediate")
? globalThis["set" + "Immediate"]
: (callback, ...args) => setTimeout(callback, 0, ...args);
function styleReplacer(match, prefix, s, suffix) {
return "" + prefix + ("s" === s ? "\\73 " : "\\53 ") + suffix;
}
Expand Down Expand Up @@ -4903,7 +4912,7 @@
})
: setTimeoutOrImmediate(function () {
return performWork(request);
}, 0));
}));
}
function createSuspenseBoundary(
request,
Expand Down Expand Up @@ -8473,7 +8482,7 @@
request
)
: enqueueEarlyPreloadsAfterInitialWork(request));
}, 0);
});
}
function enqueueEarlyPreloadsAfterInitialWork(request) {
safelyEmitEarlyPreloads(request, 0 === request.pendingRootTasks);
Expand All @@ -8488,7 +8497,7 @@
destination
? flushCompletedQueues(request, destination)
: (request.flushScheduled = !1);
}, 0));
}));
}
function startFlowing(request, destination) {
if (13 === request.status)
Expand Down Expand Up @@ -10392,16 +10401,5 @@
startWork(request);
});
};

// This is a patch added by Next.js
const setTimeoutOrImmediate =
typeof globalThis['set' + 'Immediate'] === 'function' &&
// edge runtime sandbox defines a stub for setImmediate
// (see 'addStub' in packages/next/src/server/web/sandbox/context.ts)
// but it's made non-enumerable, so we can detect it
globalThis.propertyIsEnumerable('setImmediate')
? globalThis['set' + 'Immediate']
: setTimeout;

exports.version = "19.2.0-experimental-197d6a04-20250424";
})();
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
// This is a patch added by Next.js
const setTimeoutOrImmediate =
typeof globalThis["set" + "Immediate"] === "function" &&
// edge runtime sandbox defines a stub for setImmediate
// (see 'addStub' in packages/next/src/server/web/sandbox/context.ts)
// but it's made non-enumerable, so we can detect it
globalThis.propertyIsEnumerable("setImmediate")
? globalThis["set" + "Immediate"]
: (callback, ...args) => setTimeout(callback, 0, ...args);
/**
* @license React
* react-dom-server.edge.production.js
Expand Down Expand Up @@ -4411,7 +4420,7 @@ function pingTask(request, task) {
})
: setTimeoutOrImmediate(function () {
return performWork(request);
}, 0));
}));
}
function createSuspenseBoundary(
request,
Expand Down Expand Up @@ -6936,7 +6945,7 @@ function startWork(request) {
request
)
: enqueueEarlyPreloadsAfterInitialWork(request));
}, 0);
});
}
function enqueueEarlyPreloadsAfterInitialWork(request) {
safelyEmitEarlyPreloads(request, 0 === request.pendingRootTasks);
Expand All @@ -6951,7 +6960,7 @@ function enqueueFlush(request) {
destination
? flushCompletedQueues(request, destination)
: (request.flushScheduled = !1);
}, 0));
}));
}
function startFlowing(request, destination) {
if (13 === request.status)
Expand Down Expand Up @@ -7305,15 +7314,4 @@ exports.resumeAndPrerender = function (children, postponedState, options) {
startWork(request);
});
};

// This is a patch added by Next.js
const setTimeoutOrImmediate =
typeof globalThis['set' + 'Immediate'] === 'function' &&
// edge runtime sandbox defines a stub for setImmediate
// (see 'addStub' in packages/next/src/server/web/sandbox/context.ts)
// but it's made non-enumerable, so we can detect it
globalThis.propertyIsEnumerable('setImmediate')
? globalThis['set' + 'Immediate']
: setTimeout;

exports.version = "19.2.0-experimental-197d6a04-20250424";
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,15 @@
"use strict";
"production" !== process.env.NODE_ENV &&
(function () {
// This is a patch added by Next.js
const setTimeoutOrImmediate =
typeof globalThis["set" + "Immediate"] === "function" &&
// edge runtime sandbox defines a stub for setImmediate
// (see 'addStub' in packages/next/src/server/web/sandbox/context.ts)
// but it's made non-enumerable, so we can detect it
globalThis.propertyIsEnumerable("setImmediate")
? globalThis["set" + "Immediate"]
: (callback, ...args) => setTimeout(callback, 0, ...args);
function styleReplacer(match, prefix, s, suffix) {
return "" + prefix + ("s" === s ? "\\73 " : "\\53 ") + suffix;
}
Expand Down Expand Up @@ -4565,7 +4574,7 @@
})
: setTimeoutOrImmediate(function () {
return performWork(request);
}, 0));
}));
}
function createSuspenseBoundary(
request,
Expand Down Expand Up @@ -7704,7 +7713,7 @@
request
)
: enqueueEarlyPreloadsAfterInitialWork(request));
}, 0);
});
}
function enqueueEarlyPreloadsAfterInitialWork(request) {
safelyEmitEarlyPreloads(request, 0 === request.pendingRootTasks);
Expand All @@ -7719,7 +7728,7 @@
destination
? flushCompletedQueues(request, destination)
: (request.flushScheduled = !1);
}, 0));
}));
}
function startFlowing(request, destination) {
if (13 === request.status)
Expand Down Expand Up @@ -9439,16 +9448,5 @@
startWork(request);
});
};

// This is a patch added by Next.js
const setTimeoutOrImmediate =
typeof globalThis['set' + 'Immediate'] === 'function' &&
// edge runtime sandbox defines a stub for setImmediate
// (see 'addStub' in packages/next/src/server/web/sandbox/context.ts)
// but it's made non-enumerable, so we can detect it
globalThis.propertyIsEnumerable('setImmediate')
? globalThis['set' + 'Immediate']
: setTimeout;

exports.version = "19.2.0-canary-197d6a04-20250424";
})();
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
// This is a patch added by Next.js
const setTimeoutOrImmediate =
typeof globalThis["set" + "Immediate"] === "function" &&
// edge runtime sandbox defines a stub for setImmediate
// (see 'addStub' in packages/next/src/server/web/sandbox/context.ts)
// but it's made non-enumerable, so we can detect it
globalThis.propertyIsEnumerable("setImmediate")
? globalThis["set" + "Immediate"]
: (callback, ...args) => setTimeout(callback, 0, ...args);
/**
* @license React
* react-dom-server.edge.production.js
Expand Down Expand Up @@ -4078,7 +4087,7 @@ function pingTask(request, task) {
})
: setTimeoutOrImmediate(function () {
return performWork(request);
}, 0));
}));
}
function createSuspenseBoundary(
request,
Expand Down Expand Up @@ -6262,7 +6271,7 @@ function startWork(request) {
request
)
: enqueueEarlyPreloadsAfterInitialWork(request));
}, 0);
});
}
function enqueueEarlyPreloadsAfterInitialWork(request) {
safelyEmitEarlyPreloads(request, 0 === request.pendingRootTasks);
Expand All @@ -6277,7 +6286,7 @@ function enqueueFlush(request) {
destination
? flushCompletedQueues(request, destination)
: (request.flushScheduled = !1);
}, 0));
}));
}
function startFlowing(request, destination) {
if (13 === request.status)
Expand Down Expand Up @@ -6468,15 +6477,4 @@ exports.renderToReadableStream = function (children, options) {
startWork(request);
});
};

// This is a patch added by Next.js
const setTimeoutOrImmediate =
typeof globalThis['set' + 'Immediate'] === 'function' &&
// edge runtime sandbox defines a stub for setImmediate
// (see 'addStub' in packages/next/src/server/web/sandbox/context.ts)
// but it's made non-enumerable, so we can detect it
globalThis.propertyIsEnumerable('setImmediate')
? globalThis['set' + 'Immediate']
: setTimeout;

exports.version = "19.2.0-canary-197d6a04-20250424";
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,15 @@
"use strict";
"production" !== process.env.NODE_ENV &&
(function () {
// This is a patch added by Next.js
const setTimeoutOrImmediate =
typeof globalThis["set" + "Immediate"] === "function" &&
// edge runtime sandbox defines a stub for setImmediate
// (see 'addStub' in packages/next/src/server/web/sandbox/context.ts)
// but it's made non-enumerable, so we can detect it
globalThis.propertyIsEnumerable("setImmediate")
? globalThis["set" + "Immediate"]
: (callback, ...args) => setTimeout(callback, 0, ...args);
function voidHandler() {}
function getIteratorFn(maybeIterable) {
if (null === maybeIterable || "object" !== typeof maybeIterable)
Expand Down Expand Up @@ -1445,7 +1454,7 @@
})
: setTimeoutOrImmediate(function () {
return performWork(request);
}, 0));
}));
}
function createTask(
request,
Expand Down Expand Up @@ -2826,7 +2835,7 @@
});
setTimeoutOrImmediate(function () {
request.status === OPENING && (request.status = 11);
}, 0);
});
}
function enqueueFlush(request) {
!1 === request.flushScheduled &&
Expand All @@ -2837,7 +2846,7 @@
request.flushScheduled = !1;
var destination = request.destination;
destination && flushCompletedChunks(request, destination);
}, 0));
}));
}
function callOnAllReadyIfReady(request) {
if (
Expand Down Expand Up @@ -4303,17 +4312,6 @@
bind: { value: bind, configurable: !0 }
});
};

// This is a patch added by Next.js
const setTimeoutOrImmediate =
typeof globalThis['set' + 'Immediate'] === 'function' &&
// edge runtime sandbox defines a stub for setImmediate
// (see 'addStub' in packages/next/src/server/web/sandbox/context.ts)
// but it's made non-enumerable, so we can detect it
globalThis.propertyIsEnumerable('setImmediate')
? globalThis['set' + 'Immediate']
: setTimeout;

exports.renderToReadableStream = function (model, turbopackMap, options) {
var request = createRequest(
model,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
// This is a patch added by Next.js
const setTimeoutOrImmediate =
typeof globalThis["set" + "Immediate"] === "function" &&
// edge runtime sandbox defines a stub for setImmediate
// (see 'addStub' in packages/next/src/server/web/sandbox/context.ts)
// but it's made non-enumerable, so we can detect it
globalThis.propertyIsEnumerable("setImmediate")
? globalThis["set" + "Immediate"]
: (callback, ...args) => setTimeout(callback, 0, ...args);
/**
* @license React
* react-server-dom-turbopack-server.edge.production.js
Expand Down Expand Up @@ -1144,7 +1153,7 @@ function pingTask(request, task) {
})
: setTimeoutOrImmediate(function () {
return performWork(request);
}, 0));
}));
}
function createTask(request, model, keyPath, implicitSlot, abortSet) {
request.pendingChunks++;
Expand Down Expand Up @@ -1949,7 +1958,7 @@ function startWork(request) {
});
setTimeoutOrImmediate(function () {
10 === request.status && (request.status = 11);
}, 0);
});
}
function enqueueFlush(request) {
!1 === request.flushScheduled &&
Expand All @@ -1960,7 +1969,7 @@ function enqueueFlush(request) {
request.flushScheduled = !1;
var destination = request.destination;
destination && flushCompletedChunks(request, destination);
}, 0));
}));
}
function callOnAllReadyIfReady(request) {
if (0 === request.abortableTasks.size && 0 === request.abortListeners.size)
Expand Down Expand Up @@ -2881,17 +2890,6 @@ exports.registerServerReference = function (reference, id, exportName) {
bind: { value: bind, configurable: !0 }
});
};

// This is a patch added by Next.js
const setTimeoutOrImmediate =
typeof globalThis['set' + 'Immediate'] === 'function' &&
// edge runtime sandbox defines a stub for setImmediate
// (see 'addStub' in packages/next/src/server/web/sandbox/context.ts)
// but it's made non-enumerable, so we can detect it
globalThis.propertyIsEnumerable('setImmediate')
? globalThis['set' + 'Immediate']
: setTimeout;

exports.renderToReadableStream = function (model, turbopackMap, options) {
var request = new RequestInstance(
20,
Expand Down
Loading
Loading