weifuwu 0.18.17 → 0.18.18

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 +2 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -5546,7 +5546,8 @@ function liveReload(opts) {
5546
5546
  clearCompileCache();
5547
5547
  try {
5548
5548
  await compileTsxDev(filePath);
5549
- } catch {
5549
+ } catch (e) {
5550
+ console.error("live reload compile failed:", e);
5550
5551
  }
5551
5552
  broadcastReload();
5552
5553
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "weifuwu",
3
- "version": "0.18.17",
3
+ "version": "0.18.18",
4
4
  "description": "Web-standard HTTP framework for Node.js — (req, ctx) => Response",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",