@stone-js/edge-adapter 0.8.8 → 0.8.9
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/buildFetchHandler.d.ts +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/serve.d.ts +1 -1
- package/package.json +6 -6
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * from './buildFetchHandler';
|
|
2
|
-
export * from './declarations';
|
|
3
|
-
export * from './serve';
|
|
1
|
+
export * from './buildFetchHandler.js';
|
|
2
|
+
export * from './declarations.js';
|
|
3
|
+
export * from './serve.js';
|
package/dist/serve.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { EdgeAppOptions, FetchHandler } from './declarations';
|
|
1
|
+
import { EdgeAppOptions, FetchHandler } from './declarations.js';
|
|
2
2
|
/**
|
|
3
3
|
* Returns a Web-standard fetch handler that boots the app lazily on the first request (so it works
|
|
4
4
|
* as a module export). This is the generic target — Vercel Edge and any WinterCG host use it as-is.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stone-js/edge-adapter",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.9",
|
|
4
4
|
"description": "Deploy a Stone.js app to any WinterCG/edge or JS runtime — Cloudflare Workers, Vercel Edge, Netlify Edge, Deno and Bun — with one-line serve helpers on top of @stone-js/fetch-adapter. Build once, deploy anywhere.",
|
|
5
5
|
"author": "Mr. Stone <evensstone@gmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
"node": ">=18.17.0"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
|
-
"@stone-js/core": "0.8.
|
|
44
|
-
"@stone-js/fetch-adapter": "0.8.
|
|
43
|
+
"@stone-js/core": "0.8.9",
|
|
44
|
+
"@stone-js/fetch-adapter": "0.8.9"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@commitlint/cli": "^19.8.1",
|
|
@@ -62,9 +62,9 @@
|
|
|
62
62
|
"typedoc-plugin-markdown": "^4.7.0",
|
|
63
63
|
"typescript": "^5.6.3",
|
|
64
64
|
"vitest": "^3.2.4",
|
|
65
|
-
"@stone-js/core": "0.8.
|
|
66
|
-
"@stone-js/fetch-adapter": "0.8.
|
|
67
|
-
"@stone-js/http-core": "0.8.
|
|
65
|
+
"@stone-js/core": "0.8.9",
|
|
66
|
+
"@stone-js/fetch-adapter": "0.8.9",
|
|
67
|
+
"@stone-js/http-core": "0.8.9"
|
|
68
68
|
},
|
|
69
69
|
"ts-standard": {
|
|
70
70
|
"globals": [
|