bun-dev-server 0.9.83 → 0.9.84
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +3 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1741,6 +1741,9 @@ async function startBunDevServer(serverConfig, importMeta) {
|
|
|
1741
1741
|
});
|
|
1742
1742
|
const watcher = watch(srcWatch, { recursive: true });
|
|
1743
1743
|
for await (const event of watcher) {
|
|
1744
|
+
if (queue.pending > 0) {
|
|
1745
|
+
continue;
|
|
1746
|
+
}
|
|
1744
1747
|
try {
|
|
1745
1748
|
if (queue.size > 0) {
|
|
1746
1749
|
queue.clear();
|