We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eda56a8 commit bf76bd9Copy full SHA for bf76bd9
packages/site-kit/src/lib/markdown/renderer.ts
@@ -566,6 +566,7 @@ function find_nearest_node_modules(file: string): string | null {
566
function hash_graph(hash: Hash, file: string, seen = new Set<string>()) {
567
if (seen.has(file)) return;
568
seen.add(file);
569
+ console.log('including', file, 'in hash');
570
571
const content = fs.readFileSync(file, 'utf-8');
572
0 commit comments