Revert "feat(third_party) Port get-ripgrep." (#8923)

This commit is contained in:
joshualitt
2025-09-19 11:08:41 -07:00
committed by GitHub
parent 2bf226e918
commit 7681c595b5
16 changed files with 129 additions and 308 deletions

View File

@@ -21,9 +21,7 @@ import { execSync } from 'node:child_process';
import { writeFileSync } from 'node:fs';
import { join } from 'node:path';
if (
!(process.cwd().includes('packages') || process.cwd().includes('third_party'))
) {
if (!process.cwd().includes('packages')) {
console.error('must be invoked from a package directory');
process.exit(1);
}

View File

@@ -43,7 +43,6 @@ for (const workspace of rootPackageJson.workspaces) {
for (const pkgPath of packages) {
const pkgDir = dirname(join(root, pkgPath));
rmSync(join(pkgDir, 'dist'), RMRF_OPTIONS);
rmSync(join(pkgDir, 'tsconfig.tsbuildinfo'), RMRF_OPTIONS);
}
}