Skip to content

Commit 701b15c

Browse files
Merge pull request #260 from rust-lang/renovate/tsdown-0.x-lockfile
chore(deps): update dependency tsdown to v0.22.2
2 parents 9f93ac2 + cf898e1 commit 701b15c

2 files changed

Lines changed: 262 additions & 70 deletions

File tree

dist/chunk1.js

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2024,7 +2024,7 @@ var require_timers = /* @__PURE__ */ __commonJSMin(((exports, module) => {
20242024
* @type {number}
20252025
* @default 499
20262026
*/
2027-
const TICK_MS = (RESOLUTION_MS >> 1) - 1;
2027+
const TICK_MS = 499;
20282028
/**
20292029
* fastNowTimeout is a Node.js timer used to manage and process
20302030
* the FastTimers stored in the `fastTimers` array.
@@ -5303,11 +5303,10 @@ var require_client_h1 = /* @__PURE__ */ __commonJSMin(((exports, module) => {
53035303
let currentBufferRef = null;
53045304
let currentBufferSize = 0;
53055305
let currentBufferPtr = null;
5306-
const USE_NATIVE_TIMER = 0;
53075306
const USE_FAST_TIMER = 1;
5308-
const TIMEOUT_HEADERS = 2 | USE_FAST_TIMER;
5309-
const TIMEOUT_BODY = 4 | USE_FAST_TIMER;
5310-
const TIMEOUT_KEEP_ALIVE = 8 | USE_NATIVE_TIMER;
5307+
const TIMEOUT_HEADERS = 3;
5308+
const TIMEOUT_BODY = 5;
5309+
const TIMEOUT_KEEP_ALIVE = 8;
53115310
var Parser = class {
53125311
constructor(client, socket, { exports: exports$1 }) {
53135312
assert$19(Number.isFinite(client[kMaxHeadersSize]) && client[kMaxHeadersSize] > 0);
@@ -11512,7 +11511,6 @@ var require_fetch = /* @__PURE__ */ __commonJSMin(((exports, module) => {
1151211511
let httpFetchParams = null;
1151311512
let httpRequest = null;
1151411513
let response = null;
11515-
const httpCache = null;
1151611514
if (request.window === "no-window" && request.redirect === "error") {
1151711515
httpFetchParams = fetchParams;
1151811516
httpRequest = request;
@@ -11543,7 +11541,7 @@ var require_fetch = /* @__PURE__ */ __commonJSMin(((exports, module) => {
1154311541
else httpRequest.headersList.append("accept-encoding", "gzip, deflate", true);
1154411542
httpRequest.headersList.delete("host", true);
1154511543
if (includeCredentials) {}
11546-
if (httpCache == null) httpRequest.cache = "no-store";
11544+
httpRequest.cache = "no-store";
1154711545
if (httpRequest.cache !== "no-store" && httpRequest.cache !== "reload") {}
1154811546
if (response == null) {
1154911547
if (httpRequest.cache === "only-if-cached") return makeNetworkError("only if cached");

0 commit comments

Comments
 (0)