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

Function releaseDevLock

packages/cli/src/util/dev/dev-lock.ts:124–131  ·  view source on GitHub ↗
(projectRoot: string)

Source from the content-addressed store, hash-verified

122}
123
124export function releaseDevLock(projectRoot: string): void {
125 const lockPath = join(projectRoot, VERCEL_DIR, DEV_LOCK_FILE);
126 try {
127 unlinkSync(lockPath);
128 } catch (err) {
129 output.debug(`Failed to release lock: ${err}`);
130 }
131}

Callers 3

cleanupFunction · 0.90
devFunction · 0.90
dev-lock.test.tsFile · 0.85

Calls 1

debugMethod · 0.80

Tested by

no test coverage detected