From e80f2c745dacea12f77b136f7ae54434a898bc57 Mon Sep 17 00:00:00 2001 From: miccy <9729864+miccy@users.noreply.github.com> Date: Tue, 28 Apr 2026 12:57:25 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B9=20[remove=20debug=20logs=20from=20?= =?UTF-8?q?test-loader]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removed debug console.log statements from apps/docs/test-loader.ts. Since the file only contained these logs and their supporting boilerplate, and it was not referenced anywhere in the codebase, the entire file was deleted to improve code health. --- apps/docs/test-loader.ts | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 apps/docs/test-loader.ts diff --git a/apps/docs/test-loader.ts b/apps/docs/test-loader.ts deleted file mode 100644 index de3bf02..0000000 --- a/apps/docs/test-loader.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { glob } from 'astro/loaders' -import { dirname, join } from 'path' -import { fileURLToPath } from 'url' - -const __dirname = dirname(fileURLToPath(import.meta.url)) -const rootDir = join(__dirname, '../..') - -console.log('Current dir:', __dirname) -console.log('Root dir:', rootDir) -console.log('Packages dir:', join(rootDir, 'packages/docs-content/en'))