We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3da6ee7 commit 8c5945eCopy full SHA for 8c5945e
src/bindings/copy.build.ts
@@ -3,7 +3,9 @@ import * as path from "node:path";
3
import * as glob from "glob";
4
5
const cp = async (fromGlob: string, toPath: string) => {
6
- for (const file of glob.sync(path.join(fromGlob, "**/*"), { windowsPathsNoEscape: true })) {
+ for (const file of glob.sync(path.join(fromGlob, "**/*"), {
7
+ windowsPathsNoEscape: true,
8
+ })) {
9
const relPath = path.relative(fromGlob, file);
10
const pathTo = path.join(toPath, relPath);
11
const stat = await fs.stat(file);
0 commit comments