Skip to content

Commit 2c55f4f

Browse files
committed
updated index.ts
1 parent f60b630 commit 2c55f4f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

index.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,12 @@ export const config: IConfig = {
1616
footerContent: decoder.decode(Deno.readFileSync('./footer.html'))
1717
}
1818
console.log(`cwd: ` + Deno.cwd());
19+
console.log(`Files in ${path.resolve('./')}`)
20+
for (let item of Deno.readDirSync(path.resolve('./')))
21+
{
22+
console.log(`- ${item.name}` + (item.isDirectory ? ' (directory)' : ''))
23+
}
1924
console.log(`Reading all files in ${config.distPath}`);
20-
console.debug(`Current directory;`, Deno.readDirSync(path.resolve('./')));
2125
for (let item of Deno.readDirSync(config.distPath))
2226
{
2327
if (!item.isFile && item.name != '.gitkeep')

0 commit comments

Comments
 (0)