MCPcopy Create free account
hub / github.com/TanStack/cli / recursivelyGatherFiles

Function recursivelyGatherFiles

packages/create/src/file-helpers.ts:175–183  ·  view source on GitHub ↗
(
  path: string,
  includeProjectFiles = true,
)

Source from the content-addressed store, hash-verified

173}
174
175export async function recursivelyGatherFiles(
176 path: string,
177 includeProjectFiles = true,
178) {
179 const ignore = createIgnore(path, includeProjectFiles)
180 const files: Record<string, string> = {}
181 await recursivelyGatherFilesHelper(path, path, files, ignore)
182 return files
183}
184
185async function recursivelyGatherFilesFromEnvironmentHelper(
186 environment: Environment,

Callers 1

compileAddOnFunction · 0.85

Calls 2

createIgnoreFunction · 0.85

Tested by

no test coverage detected