chore(scripts): fix lints

This commit is contained in:
Eric Liu 2025-03-30 09:08:20 -07:00
commit de0ff76c8f
2 changed files with 6 additions and 6 deletions

View file

@ -22,7 +22,7 @@ sveld({
},
});
globSync(["./src/**/*.d.ts"]).forEach((file) => {
for (const file of globSync(["./src/**/*.d.ts"])) {
console.log("Copying", file, " to types/");
fs.copyFileSync(file, file.replace(/src/, "types"));
});
}