Skip to content

Commit

Permalink
drop! debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
marvinhagemeister committed Jun 24, 2024
1 parent e726263 commit dba0eb1
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/dev/dev_build_cache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,12 @@ export class DiskBuildCache implements DevBuildCache {
});

for await (const entry of entries) {
console.log("DISK - " + entry.path);
// OutDir might be inside static dir

console.log(
"DISK - " + entry.path,
path.relative(this.config.build.outDir, entry.path),
);
const result = await this.#transformer.process(
entry.path,
"production",
Expand Down

0 comments on commit dba0eb1

Please sign in to comment.