Skip to content
Open
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
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"@parcel/watcher": "^2.5.1",
"@types/debug": "^4.1.12",
"@types/node": "22.14.1",
"@vitest/coverage-v8": "^4.0.13",
"@vitest/coverage-v8": "^4.0.14",
"automd": "^0.4.2",
"changelogen": "^0.6.2",
"consola": "^3.4.2",
Expand All @@ -59,13 +59,13 @@
"exsolve": "^1.0.8",
"jiti": "^2.6.1",
"magic-string": "^0.30.21",
"obuild": "^0.4.2",
"prettier": "^3.6.2",
"obuild": "^0.4.3",
"prettier": "^3.7.1",
"tinyexec": "^1.0.2",
"typescript": "^5.9.3",
"vitest": "^4.0.13",
"workerd": "^1.20251121.0",
"wrangler": "^4.50.0"
"vitest": "^4.0.14",
"workerd": "^1.20251127.0",
"wrangler": "^4.51.0"
},
"packageManager": "[email protected]"
}
672 changes: 336 additions & 336 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

7 changes: 4 additions & 3 deletions src/runtime/node/internal/diagnostics_channel/channel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ import type nodeDiagnosticsChannel from "node:diagnostics_channel";
const channels: Record<string | symbol, nodeDiagnosticsChannel.Channel> = {};
export const getChannels = () => channels;

export class Channel<StoreType, ContextType>
implements nodeDiagnosticsChannel.Channel<StoreType, ContextType>
{
export class Channel<
StoreType,
ContextType,
> implements nodeDiagnosticsChannel.Channel<StoreType, ContextType> {
readonly __unenv__ = true;

name: nodeDiagnosticsChannel.Channel["name"];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ import { Channel } from "./channel.ts";
export class TracingChannel<
StoreType = unknown,
ContextType extends object = object,
> implements nodeDagnosticsChannel.TracingChannel<StoreType, ContextType>
{
> implements nodeDagnosticsChannel.TracingChannel<StoreType, ContextType> {
readonly __unenv__ = true;

asyncEnd: Channel<StoreType, ContextType> = new Channel("asyncEnd");
Expand Down
1 change: 0 additions & 1 deletion src/runtime/node/internal/punycode/punycode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,6 @@ const decode = function (input: string) {
for (
let index = basic > 0 ? basic + 1 : 0;
index < inputLength /* no final expression */;

) {
// `index` is the index of the next character to be consumed.
// Decode a generalized variable-length integer into `delta`,
Expand Down
6 changes: 3 additions & 3 deletions src/runtime/node/internal/url/url.ts
Original file line number Diff line number Diff line change
Expand Up @@ -269,8 +269,8 @@ function getPathFromURLPosix(url: URL) {
function isURL(self: any): self is URL {
return Boolean(
self?.href &&
self.protocol &&
self.auth === undefined &&
self.path === undefined,
self.protocol &&
self.auth === undefined &&
self.path === undefined,
);
}
3 changes: 2 additions & 1 deletion src/runtime/web/performance/_polyfills.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,8 @@ export class _PerformanceObserverEntryList
// https://developer.mozilla.org/en-US/docs/Web/API/Performance
export class _Performance<
PerformanceEntryT extends PerformanceEntry = PerformanceEntry,
> implements globalThis.Performance
>
implements globalThis.Performance
{
readonly __unenv__ = true;

Expand Down