Skip to content

Commit 5ea4b00

Browse files
chore(deps): update dependency sirv to v3 (#18346)
Co-authored-by: sapphi-red <49056869+sapphi-red@users.noreply.github.com>
1 parent 2a8ed7f commit 5ea4b00

File tree

5 files changed

+35
-22
lines changed

5 files changed

+35
-22
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
"acorn@8.12.1": "patches/acorn@8.12.1.patch",
106106
"chokidar@3.6.0": "patches/chokidar@3.6.0.patch",
107107
"http-proxy@1.18.1": "patches/http-proxy@1.18.1.patch",
108-
"sirv@2.0.4": "patches/sirv@2.0.4.patch"
108+
"sirv@3.0.0": "patches/sirv@3.0.0.patch"
109109
},
110110
"peerDependencyRules": {
111111
"allowedVersions": {

packages/vite/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@
144144
"rollup-plugin-license": "^3.5.3",
145145
"sass": "^1.79.4",
146146
"sass-embedded": "^1.79.4",
147-
"sirv": "^2.0.4",
147+
"sirv": "^3.0.0",
148148
"source-map-support": "^0.5.21",
149149
"strip-ansi": "^7.1.0",
150150
"strip-literal": "^2.1.0",

patches/sirv@2.0.4.patch patches/sirv@3.0.0.patch

+21-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
diff --git a/build.js b/build.js
2-
index 0884d9ffaa24d0ae3ec020a6faff12b3125b2071..85b82c90346e829bbf723e913f282c80096df061 100644
2+
index 0c6ed8e2c0949c93978dd1a244baa9bf2448e9b8..08a9347cfdca06e6a97077ea4582c5b0922ecb2d 100644
33
--- a/build.js
44
+++ b/build.js
55
@@ -35,7 +35,7 @@ function viaCache(cache, uri, extns) {
@@ -29,7 +29,7 @@ index 0884d9ffaa24d0ae3ec020a6faff12b3125b2071..85b82c90346e829bbf723e913f282c80
2929

3030
if (isEtag && req.headers['if-none-match'] === data.headers['ETag']) {
3131
diff --git a/build.mjs b/build.mjs
32-
index c93bbe6bdfb7ad13ee20f0c44d80d6aacdd64087..3dc3e22f09abcae51aef7b75c34dc08b1f6e6abd 100644
32+
index 3ad14d45630a8627b93842a04a96465120d3f223..8451277c015b56a7d2cb99aaee3a318d9c0893dd 100644
3333
--- a/build.mjs
3434
+++ b/build.mjs
3535
@@ -35,7 +35,7 @@ function viaCache(cache, uri, extns) {
@@ -58,16 +58,29 @@ index c93bbe6bdfb7ad13ee20f0c44d80d6aacdd64087..3dc3e22f09abcae51aef7b75c34dc08b
5858
if (!data) return next ? next() : isNotFound(req, res);
5959

6060
if (isEtag && req.headers['if-none-match'] === data.headers['ETag']) {
61-
diff --git a/sirv.d.ts b/sirv.d.ts
62-
index c05040fc6ec504a1828a7badd39f669981acd0ee..e9597e8b5bf24613a09565f0e13024ae3ca8fa5e 100644
63-
--- a/sirv.d.ts
64-
+++ b/sirv.d.ts
65-
@@ -19,6 +19,8 @@ declare module 'sirv' {
61+
diff --git a/index.d.mts b/index.d.mts
62+
index 8bfe364f1db2d1382c56a9b75a014579083cfa70..a8dfa1c473ff15c979bbfbc28c3630a12e222c3a 100644
63+
--- a/index.d.mts
64+
+++ b/index.d.mts
65+
@@ -24,6 +24,8 @@ export interface Options {
66+
gzip?: boolean;
67+
onNoMatch?: (req: IncomingMessage, res: ServerResponse) => void;
68+
setHeaders?: (res: ServerResponse, pathname: string, stats: Stats) => void;
69+
+ /** patched */
70+
+ shouldServe?: (absoluteFilePath: string) => void;
71+
}
72+
73+
export default function (dir?: string, opts?: Options): RequestHandler;
74+
diff --git a/index.d.ts b/index.d.ts
75+
index 96cc63e7ee1ccdd7266e9193252b799068ef2e3c..9e298d627002cd0b073073aa13528b7492541b5b 100644
76+
--- a/index.d.ts
77+
+++ b/index.d.ts
78+
@@ -25,6 +25,8 @@ declare namespace sirv {
6679
gzip?: boolean;
6780
onNoMatch?: (req: IncomingMessage, res: ServerResponse) => void;
6881
setHeaders?: (res: ServerResponse, pathname: string, stats: Stats) => void;
6982
+ /** patched */
7083
+ shouldServe?: (absoluteFilePath: string) => void;
7184
}
85+
}
7286

73-
export default function(dir?: string, opts?: Options): RequestHandler;

playground/lib/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
"preview": "vite preview"
1111
},
1212
"devDependencies": {
13-
"sirv": "^2.0.4"
13+
"sirv": "^3.0.0"
1414
}
1515
}

pnpm-lock.yaml

+11-11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)