@marko/run 0.5.16 → 0.6.0
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/.tsbuildinfo +1 -1
- package/dist/adapter/index.cjs +71 -193
- package/dist/adapter/index.js +71 -193
- package/dist/adapter/middleware.cjs +70 -202
- package/dist/adapter/middleware.js +70 -192
- package/dist/cli/index.mjs +42 -41
- package/dist/runtime/internal.cjs +1 -1
- package/dist/runtime/internal.js +1 -1
- package/dist/runtime/types.d.ts +1 -8
- package/dist/vite/index.cjs +42 -41
- package/dist/vite/index.js +42 -41
- package/package.json +12 -13
- package/dist/adapter/polyfill.d.ts +0 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@marko/run",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"description": "The Marko application framework.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"marko"
|
|
@@ -54,24 +54,23 @@
|
|
|
54
54
|
"build": "rm -rf ./dist && tsc -b && tsx scripts/build.ts"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@marko/run-explorer": "^0.
|
|
58
|
-
"@marko/vite": "^5.0.
|
|
59
|
-
"browserslist": "^4.24.
|
|
57
|
+
"@marko/run-explorer": "^1.0.0",
|
|
58
|
+
"@marko/vite": "^5.0.14",
|
|
59
|
+
"browserslist": "^4.24.4",
|
|
60
60
|
"cli-table3": "^0.6.5",
|
|
61
|
-
"compression": "^1.
|
|
62
|
-
"debug": "^4.
|
|
63
|
-
"dotenv": "^16.4.
|
|
61
|
+
"compression": "^1.8.0",
|
|
62
|
+
"debug": "^4.4.0",
|
|
63
|
+
"dotenv": "^16.4.7",
|
|
64
64
|
"draftlog": "^1.0.13",
|
|
65
|
-
"esbuild-plugin-browserslist": "^0.
|
|
66
|
-
"glob": "^11.0.
|
|
65
|
+
"esbuild-plugin-browserslist": "^0.16.0",
|
|
66
|
+
"glob": "^11.0.1",
|
|
67
67
|
"human-format": "^1.2.1",
|
|
68
68
|
"kleur": "^4.1.5",
|
|
69
69
|
"parse-node-args": "^1.1.2",
|
|
70
70
|
"sade": "^1.8.1",
|
|
71
71
|
"serve-static": "^1.16.2",
|
|
72
|
-
"supports-color": "^
|
|
73
|
-
"
|
|
74
|
-
"vite": "^6.0.0",
|
|
72
|
+
"supports-color": "^10.0.0",
|
|
73
|
+
"vite": "^6.2.1",
|
|
75
74
|
"warp10": "^2.1.0"
|
|
76
75
|
},
|
|
77
76
|
"devDependencies": {
|
|
@@ -89,7 +88,7 @@
|
|
|
89
88
|
"body-parser": "^1.20.3",
|
|
90
89
|
"cross-env": "^7.0.3",
|
|
91
90
|
"diff": "^7.0.0",
|
|
92
|
-
"esbuild": "^0.
|
|
91
|
+
"esbuild": "^0.25.1",
|
|
93
92
|
"express": "^4.21.1",
|
|
94
93
|
"jsdom": "^25.0.1",
|
|
95
94
|
"mocha": "^10.8.2",
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { ServerResponse } from "http";
|
|
2
|
-
declare global {
|
|
3
|
-
interface Headers {
|
|
4
|
-
getSetCookie: () => string[];
|
|
5
|
-
}
|
|
6
|
-
}
|
|
7
|
-
export declare const appendHeader: typeof appendHeader_platform;
|
|
8
|
-
declare function appendHeader_platform(response: ServerResponse, name: string, value: string | readonly string[]): void;
|
|
9
|
-
export declare const getSetCookie: typeof getSetCookie_fallback;
|
|
10
|
-
export declare function getSetCookie_fallback(headers: Headers): string | string[] | undefined;
|
|
11
|
-
export {};
|