docs: fix outdated comment on rebuild debounce behaviour

This commit is contained in:
Jacky Zhao 2024-01-31 11:52:10 -08:00
parent 7cb1c291c8
commit 355aa22318

View file

@ -135,7 +135,6 @@ async function rebuildFromEntrypoint(
toRebuild, toRebuild,
toRemove, toRemove,
trackedAssets, trackedAssets,
lastBuildMs,
} = buildData } = buildData
const { argv } = ctx const { argv } = ctx
@ -164,12 +163,12 @@ async function rebuildFromEntrypoint(
toRemove.add(filePath) toRemove.add(filePath)
} }
// debounce rebuilds every 250ms
const buildStart = new Date().getTime() const buildStart = new Date().getTime()
buildData.lastBuildMs = buildStart buildData.lastBuildMs = buildStart
const release = await mut.acquire() const release = await mut.acquire()
if (lastBuildMs > buildStart) {
// there's another build after us, release and let them do it
if (buildData.lastBuildMs > buildStart) {
release() release()
return return
} }