fix(workspaces): finalize path portability and lint fixes

This commit is contained in:
mkorwel
2026-03-23 11:27:05 -07:00
parent 61034f4bc8
commit 99573ec504
10 changed files with 27 additions and 27 deletions
+3 -3
View File
@@ -6,11 +6,11 @@
import path from 'node:path';
import fs from 'node:fs';
import { spawnSync } from 'node:child_process';
import { fileURLToPath } from 'node:url';
import { ProviderFactory } from './providers/ProviderFactory.ts';
const __dirname = path.dirname(fileURLToPath(import.meta.url));
const REPO_ROOT = path.resolve(__dirname, '../../../..');
const REPO_ROOT = process.cwd();
const q = (str: string) => `'${str.replace(/'/g, "'\\''")}'`;