lockfile.ts
utils/lockfile.ts
44
Lines
1330
Bytes
4
Exports
1
Imports
10
Keywords
What this is
This page documents one file from the repository and includes its full source so you can read it without leaving the docs site.
Beginner explanation
This file is one piece of the larger system. Its name, directory, imports, and exports show where it fits. Start by reading the exports and related files first.
How it is used
Start from the exports list and related files. Those are the easiest clues for where this file fits into the system.
Expert explanation
Architecturally, this file intersects with file-tools. It contains 44 lines, 1 detected imports, and 4 detected exports.
Important relationships
Detected exports
locklockSyncunlockcheck
Keywords
lockfilefileoptionsproper-lockfilegetlockfilepromiselocklockoptionsvoidfirst
Detected imports
proper-lockfile
Source notes
This page embeds the full file contents. Small or leaf files are still indexed honestly instead of being over-explained.
Full source
/**
* Lazy accessor for proper-lockfile.
*
* proper-lockfile depends on graceful-fs, which monkey-patches every fs
* method on first require (~8ms). Static imports of proper-lockfile pull this
* cost into the startup path even when no locking happens (e.g. `--help`).
*
* Import this module instead of `proper-lockfile` directly. The underlying
* package is only loaded the first time a lock function is actually called.
*/
import type { CheckOptions, LockOptions, UnlockOptions } from 'proper-lockfile'
type Lockfile = typeof import('proper-lockfile')
let _lockfile: Lockfile | undefined
function getLockfile(): Lockfile {
if (!_lockfile) {
// eslint-disable-next-line @typescript-eslint/no-require-imports
_lockfile = require('proper-lockfile') as Lockfile
}
return _lockfile
}
export function lock(
file: string,
options?: LockOptions,
): Promise<() => Promise<void>> {
return getLockfile().lock(file, options)
}
export function lockSync(file: string, options?: LockOptions): () => void {
return getLockfile().lockSync(file, options)
}
export function unlock(file: string, options?: UnlockOptions): Promise<void> {
return getLockfile().unlock(file, options)
}
export function check(file: string, options?: CheckOptions): Promise<boolean> {
return getLockfile().check(file, options)
}