diff options
| author | seth <[email protected]> | 2023-11-12 02:50:19 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2023-11-12 02:50:58 -0500 |
| commit | 66a32af19878f8fc341c4e74b9324ea3e7c90b84 (patch) | |
| tree | 2bb303d8ed2fa82b29665eb04dac3fdc2cd0d59c /build.ts | |
| parent | 7a6fccc7b858b5497858913befb1facbe83510f2 (diff) | |
chore: refactor lint/format config
Diffstat (limited to 'build.ts')
| -rw-r--r-- | build.ts | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -27,7 +27,11 @@ const wies = (await readdir(teawieArchiveDir)).filter((wie) => { }); for (const f of wies) { - await copyFile(join(teawieArchiveDir, f), join(contentDir, "teawie", f), constants.COPYFILE_FICLONE); + await copyFile( + join(teawieArchiveDir, f), + join(contentDir, "teawie", f), + constants.COPYFILE_FICLONE, + ); } const define = { |
