MCPcopy Create free account
hub / github.com/vercel/vercel / hasFilesystem

Method hasFilesystem

packages/cli/src/util/dev/server.ts:3004–3021  ·  view source on GitHub ↗
(
    dest: string,
    vercelConfig: VercelConfig
  )

Source from the content-addressed store, hash-verified

3002 }
3003
3004 async hasFilesystem(
3005 dest: string,
3006 vercelConfig: VercelConfig
3007 ): Promise<boolean> {
3008 if (
3009 await findBuildMatch(
3010 this.buildMatches,
3011 this.files,
3012 dest,
3013 this,
3014 vercelConfig,
3015 true
3016 )
3017 ) {
3018 return true;
3019 }
3020 return false;
3021 }
3022
3023 isCaseSensitive(): boolean {
3024 return this.caseSensitive;

Callers 1

devRouterFunction · 0.80

Calls 1

findBuildMatchFunction · 0.85

Tested by

no test coverage detected