Skip to content

Commit a09a65a

Browse files
committed
feat: use @eggjs/compressible
closes #2
1 parent fe216d2 commit a09a65a

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

package.json

+5-6
Original file line numberDiff line numberDiff line change
@@ -26,18 +26,17 @@
2626
"node": ">= 18.19.0"
2727
},
2828
"dependencies": {
29-
"compressible": "^2.0.18",
29+
"@eggjs/compressible": "^3.0.0",
3030
"fs-readdir-recursive": "^1.1.0",
3131
"mime-types": "^2.1.35",
3232
"utility": "^2.4.0"
3333
},
3434
"devDependencies": {
35-
"@arethetypeswrong/cli": "^0.17.1",
35+
"@arethetypeswrong/cli": "^0.17.4",
3636
"@eggjs/bin": "7",
37-
"@eggjs/koa": "^2.20.6",
38-
"@eggjs/supertest": "^8.1.1",
37+
"@eggjs/koa": "2",
38+
"@eggjs/supertest": "8",
3939
"@eggjs/tsconfig": "1",
40-
"@types/compressible": "^2.0.2",
4140
"@types/fs-readdir-recursive": "^1.1.3",
4241
"@types/mime-types": "^2.1.4",
4342
"@types/mocha": "10",
@@ -48,7 +47,7 @@
4847
"tshy": "3",
4948
"tshy-after": "1",
5049
"typescript": "5",
51-
"ylru": "^2.0.0"
50+
"ylru": "2"
5251
},
5352
"scripts": {
5453
"lint": "eslint --cache src test --ext .ts",

src/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { createReadStream, statSync, readFileSync } from 'node:fs';
55
import zlib from 'node:zlib';
66
import path from 'node:path';
77
import mime from 'mime-types';
8-
import compressible from 'compressible';
8+
import { compressible } from '@eggjs/compressible';
99
import readDir from 'fs-readdir-recursive';
1010
import { exists, decodeURIComponent as safeDecodeURIComponent } from 'utility';
1111

@@ -272,7 +272,7 @@ export function staticCache(
272272
const shouldGzip = enableGzip
273273
&& file.length! > 1024
274274
&& acceptGzip
275-
&& compressible(file.type!);
275+
&& file.type && compressible(file.type);
276276

277277
if (file.buffer) {
278278
if (shouldGzip) {

0 commit comments

Comments
 (0)