textbrowser 0.45.0 → 0.45.1

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/CHANGES.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # CHANGES to `textbrowser`
2
2
 
3
+ ## 0.45.1
4
+
5
+ - fix: issue with `next`
6
+
3
7
  ## 0.45.0
4
8
 
5
9
  - fix: proper use of `await`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "textbrowser",
3
- "version": "0.45.0",
3
+ "version": "0.45.1",
4
4
  "description": "Multilinear text browser",
5
5
  "type": "module",
6
6
  "main": "dist/index-es.min.js",
package/server/main.js CHANGED
@@ -153,6 +153,10 @@ const srv = http.createServer(async (req, res) => {
153
153
  return regexp.source !== '^\\/?(?=\\/|$)' && regexp.test(req.url);
154
154
  }))) {
155
155
  await runHttpServer();
156
+ app(req, res, () => {
157
+ // Empty
158
+ });
159
+ return;
156
160
  }
157
161
 
158
162
  // app.get('*', staticServer);