Skip to content

Commit 6e41205

Browse files
committed
Replace fs-extra to node built-in fs:promises
1 parent 06c6095 commit 6e41205

File tree

3 files changed

+1
-37
lines changed

3 files changed

+1
-37
lines changed

package.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@
5454
"@tsconfig/node20": "^20.1.2",
5555
"@types/eslint": "^8.40.2",
5656
"@types/estraverse": "^5.1.7",
57-
"@types/fs-extra": "^9.0.13",
5857
"@types/is-html": "^2.0.0",
5958
"@types/jest": "^27.5.2",
6059
"@types/markdown-magic": "^1.0.1",
@@ -70,7 +69,6 @@
7069
"eslint-v7": "npm:eslint@^7.32.0",
7170
"execa": "^5.1.1",
7271
"fast-glob": "^3.2.12",
73-
"fs-extra": "^10.1.0",
7472
"husky": "^7.0.4",
7573
"jest": "^29.5.0",
7674
"jest-node-exports-resolver": "^1.1.6",

pnpm-lock.yaml

Lines changed: 0 additions & 34 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/docs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* eslint-disable @typescript-eslint/no-var-requires */
22
import path from "path";
3-
import fs from "fs-extra";
3+
import fs from "node:fs/promises";
44
import markdownMagic from "markdown-magic";
55
import prettier from "prettier";
66
import type { TSESLint } from "@typescript-eslint/utils";

0 commit comments

Comments
 (0)