We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f60b630 commit 2c55f4fCopy full SHA for 2c55f4f
index.ts
@@ -16,8 +16,12 @@ export const config: IConfig = {
16
footerContent: decoder.decode(Deno.readFileSync('./footer.html'))
17
}
18
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
+}
24
console.log(`Reading all files in ${config.distPath}`);
-console.debug(`Current directory;`, Deno.readDirSync(path.resolve('./')));
25
for (let item of Deno.readDirSync(config.distPath))
26
{
27
if (!item.isFile && item.name != '.gitkeep')
0 commit comments