Skip to content

Commit 8c5945e

Browse files
committed
fmt aggaaain
1 parent 3da6ee7 commit 8c5945e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/bindings/copy.build.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ import * as path from "node:path";
33
import * as glob from "glob";
44

55
const cp = async (fromGlob: string, toPath: string) => {
6-
for (const file of glob.sync(path.join(fromGlob, "**/*"), { windowsPathsNoEscape: true })) {
6+
for (const file of glob.sync(path.join(fromGlob, "**/*"), {
7+
windowsPathsNoEscape: true,
8+
})) {
79
const relPath = path.relative(fromGlob, file);
810
const pathTo = path.join(toPath, relPath);
911
const stat = await fs.stat(file);

0 commit comments

Comments
 (0)