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

Function buildMatchEquals

packages/cli/src/util/dev/server.ts:3461–3467  ·  view source on GitHub ↗
(a?: BuildMatch, b?: BuildMatch)

Source from the content-addressed store, hash-verified

3459}
3460
3461function buildMatchEquals(a?: BuildMatch, b?: BuildMatch): boolean {
3462 if (!a || !b) return false;
3463 if (a.src !== b.src) return false;
3464 if (a.use !== b.use) return false;
3465 if (!deepEqual(a.config || {}, b.config || {})) return false;
3466 return true;
3467}

Callers 1

updateBuildMatchesMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected