Skip to content

Commit 7dc2681

Browse files
authored
[get-uri] Remove fs-extra dependency (#341)
1 parent 7d4bd26 commit 7dc2681

9 files changed

+97
-85
lines changed

.changeset/dirty-eagles-jog.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'get-uri': patch
3+
---
4+
5+
Removed `fs-extra` dependency and implemented its features using native Node.js functionality.

packages/get-uri/package.json

+1-3
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
"license": "MIT",
3737
"devDependencies": {
3838
"@types/debug": "^4.1.7",
39-
"@types/fs-extra": "^8.1.2",
4039
"@types/ftpd": "^0.2.35",
4140
"@types/jest": "^29.5.1",
4241
"@types/node": "^14.18.45",
@@ -51,8 +50,7 @@
5150
"dependencies": {
5251
"basic-ftp": "^5.0.2",
5352
"data-uri-to-buffer": "^6.0.2",
54-
"debug": "^4.3.4",
55-
"fs-extra": "^11.2.0"
53+
"debug": "^4.3.4"
5654
},
5755
"engines": {
5856
"node": ">= 14"

packages/get-uri/src/file.ts

+7-8
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { Readable } from 'stream';
22
import createDebug from 'debug';
3-
import { Stats, createReadStream } from 'fs';
4-
import { fstat, open } from 'fs-extra';
3+
import { Stats, createReadStream, promises as fsPromises } from 'fs';
54
import { GetUriProtocol } from './';
65
import NotFoundError from './notfound';
76
import NotModifiedError from './notmodified';
@@ -42,11 +41,12 @@ export const file: GetUriProtocol<FileOptions> = async (
4241

4342
// `open()` first to get a file descriptor and ensure that the file
4443
// exists.
45-
const fd = await open(filepath, flags, mode);
44+
const fdHandle = await fsPromises.open(filepath, flags, mode);
45+
// extract the numeric file descriptor
46+
const fd = fdHandle.fd;
4647

47-
// Now `fstat()` to check the `mtime` and store the stat object for
48-
// the cache.
49-
const stat = await fstat(fd);
48+
// store the stat object for the cache.
49+
const stat = await fdHandle.stat();
5050

5151
// if a `cache` was provided, check if the file has not been modified
5252
if (cache && cache.stat && stat && isNotModified(cache.stat, stat)) {
@@ -55,8 +55,7 @@ export const file: GetUriProtocol<FileOptions> = async (
5555

5656
// `fs.ReadStream` takes care of calling `fs.close()` on the
5757
// fd after it's done reading
58-
// @ts-expect-error `@types/node` doesn't allow `null` as file path :/
59-
const rs = createReadStream(null, {
58+
const rs = createReadStream(filepath, {
6059
autoClose: true,
6160
...opts,
6261
fd,

packages/get-uri/test/file.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { join } from 'path';
22
import { pathToFileURL } from 'url';
3-
import { readFile } from 'fs-extra';
3+
import { readFile } from 'fs/promises';
44
import { getUri } from '../src';
55
import { toBuffer } from './util';
66

packages/get-uri/test/ftp.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { basename, join } from 'path';
22
import { FtpServer } from 'ftpd';
33
import { getUri } from '../src';
4-
import { readFile } from 'fs-extra';
4+
import { readFile } from 'fs/promises';
55
import { toBuffer } from './util';
66

77
describe('get-uri', () => {

packages/get-uri/test/http.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import st from 'st';
33
import path from 'path';
44
import http from 'http';
55
import { listen } from 'async-listen';
6-
import { readFile } from 'fs-extra';
6+
import { readFile } from 'fs/promises';
77
import { getUri } from '../src';
88
import { toBuffer } from './util';
99

packages/get-uri/test/https.test.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
import { readFile, readFileSync } from 'fs-extra';
1+
import { readFile } from 'fs/promises';
2+
import { readFileSync } from 'fs';
23
// @ts-expect-error no `@types/st`
34
import st from 'st';
45
import path from 'path';

packages/get-uri/test/redirect.test.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ import path from 'path';
44
import http from 'http';
55
import https from 'https';
66
import { listen } from 'async-listen';
7-
import { readFile, readFileSync } from 'fs-extra';
7+
import { readFile } from 'fs/promises';
8+
import { readFileSync } from 'fs';
89
import { getUri } from '../src';
910
import { toBuffer } from './util';
1011

0 commit comments

Comments
 (0)