Skip to content

Commit ab65f27

Browse files
RandomByteClaude
authored andcommitted
refactor(fs): Fix missing import
1 parent 481165e commit ab65f27

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

packages/fs/lib/adapters/FileSystem.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ const chmod = promisify(fs.chmod);
88
const mkdir = promisify(fs.mkdir);
99
const stat = promisify(fs.stat);
1010
const readFile = promisify(fs.readFile);
11+
const writeFile = promisify(fs.writeFile);
1112
import {globby, isGitIgnored} from "globby";
1213
import {PassThrough} from "node:stream";
1314
import AbstractAdapter from "./AbstractAdapter.js";

0 commit comments

Comments
 (0)