@mokup/server 1.2.0 → 1.2.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/dist/connect.cjs +1 -1
- package/dist/connect.mjs +1 -1
- package/dist/express.cjs +1 -1
- package/dist/express.mjs +1 -1
- package/dist/fastify.cjs +1 -1
- package/dist/fastify.mjs +1 -1
- package/dist/fetch-server.cjs +76 -562
- package/dist/fetch-server.mjs +71 -553
- package/dist/fetch.cjs +1 -1
- package/dist/fetch.mjs +1 -1
- package/dist/hono.cjs +1 -1
- package/dist/hono.mjs +1 -1
- package/dist/index.cjs +8 -160
- package/dist/index.d.cts +4 -41
- package/dist/index.d.mts +4 -41
- package/dist/index.d.ts +4 -41
- package/dist/index.mjs +8 -160
- package/dist/koa.cjs +1 -1
- package/dist/koa.mjs +1 -1
- package/dist/node.cjs +10 -6
- package/dist/node.mjs +10 -6
- package/dist/shared/{server.LbftO9Jh.mjs → server.B5ThEHd_.mjs} +1 -1
- package/dist/shared/{server.aaygIV2Q.cjs → server.D0X6h49r.cjs} +1 -1
- package/dist/worker-node.cjs +1 -1
- package/dist/worker-node.mjs +1 -1
- package/dist/worker.cjs +1 -1
- package/dist/worker.mjs +1 -1
- package/package.json +6 -11
package/dist/connect.cjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
const runtime = require('@mokup/runtime');
|
|
4
|
-
const runtime$1 = require('./shared/server.
|
|
4
|
+
const runtime$1 = require('./shared/server.D0X6h49r.cjs');
|
|
5
5
|
|
|
6
6
|
function createConnectMiddleware(options) {
|
|
7
7
|
const runtime$2 = runtime.createRuntime(runtime$1.toRuntimeOptions(options));
|
package/dist/connect.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { createRuntime } from '@mokup/runtime';
|
|
2
|
-
import { t as toRuntimeOptions, a as toRuntimeRequestFromNode, b as applyRuntimeResultToNode } from './shared/server.
|
|
2
|
+
import { t as toRuntimeOptions, a as toRuntimeRequestFromNode, b as applyRuntimeResultToNode } from './shared/server.B5ThEHd_.mjs';
|
|
3
3
|
|
|
4
4
|
function createConnectMiddleware(options) {
|
|
5
5
|
const runtime = createRuntime(toRuntimeOptions(options));
|
package/dist/express.cjs
CHANGED
package/dist/express.mjs
CHANGED
package/dist/fastify.cjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
const runtime = require('@mokup/runtime');
|
|
4
|
-
const runtime$1 = require('./shared/server.
|
|
4
|
+
const runtime$1 = require('./shared/server.D0X6h49r.cjs');
|
|
5
5
|
|
|
6
6
|
function createFastifyPlugin(options) {
|
|
7
7
|
const runtime$2 = runtime.createRuntime(runtime$1.toRuntimeOptions(options));
|
package/dist/fastify.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { createRuntime } from '@mokup/runtime';
|
|
2
|
-
import { t as toRuntimeOptions, a as toRuntimeRequestFromNode, c as toBinaryBody } from './shared/server.
|
|
2
|
+
import { t as toRuntimeOptions, a as toRuntimeRequestFromNode, c as toBinaryBody } from './shared/server.B5ThEHd_.mjs';
|
|
3
3
|
|
|
4
4
|
function createFastifyPlugin(options) {
|
|
5
5
|
const runtime = createRuntime(toRuntimeOptions(options));
|