Refactor out of utils

This commit is contained in:
Saoud Rizwan
2024-09-24 11:45:12 -04:00
parent 7c21a4c833
commit 40f7942801
8 changed files with 7 additions and 11 deletions

View File

@@ -1,7 +1,7 @@
import { globby, Options } from "globby"
import os from "os"
import * as path from "path"
import { arePathsEqual } from "../../utils/path-helpers"
import { arePathsEqual } from "../../utils/path"
export async function listFiles(dirPath: string, recursive: boolean, limit: number): Promise<[string[], boolean]> {
const absolutePath = path.resolve(dirPath)