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.
Files changed (2) hide show
  1. package/dist/index.js +3 -0
  2. 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();
package/package.json CHANGED
@@ -24,7 +24,7 @@
24
24
  "exports": {
25
25
  ".": "./dist/index.js"
26
26
  },
27
- "version": "0.9.83",
27
+ "version": "0.9.84",
28
28
  "module": "index.ts",
29
29
  "type": "module",
30
30
  "license": "MIT",