silgi 0.41.61 → 0.41.62
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/cli/index.mjs +1 -1
- package/dist/core/index.d.mts +2 -2
- package/dist/core/index.mjs +1 -3
- package/package.json +18 -18
package/dist/cli/index.mjs
CHANGED
package/dist/core/index.d.mts
CHANGED
|
@@ -93,12 +93,12 @@ declare class SilgiHttpEvent implements SilgiEvent {
|
|
|
93
93
|
context: SilgiRuntimeContext;
|
|
94
94
|
_res?: SilgiEventResponse;
|
|
95
95
|
constructor(req: ServerRequest, context?: SilgiRuntimeContext);
|
|
96
|
-
|
|
96
|
+
_chain: Promise<unknown> | undefined;
|
|
97
|
+
[x: string]: unknown;
|
|
97
98
|
get res(): SilgiEventResponse;
|
|
98
99
|
get runtime(): ServerRuntimeContext | undefined;
|
|
99
100
|
toString(): string;
|
|
100
101
|
toJSON(): string;
|
|
101
|
-
[x: string]: unknown;
|
|
102
102
|
}
|
|
103
103
|
declare class SilgiEventResponse {
|
|
104
104
|
status?: number;
|
package/dist/core/index.mjs
CHANGED
|
@@ -450,9 +450,7 @@ class SilgiHttpEvent {
|
|
|
450
450
|
const _url = req._url;
|
|
451
451
|
this.url = _url && _url instanceof URL ? _url : new FastURL(req.url);
|
|
452
452
|
}
|
|
453
|
-
|
|
454
|
-
return this._chain;
|
|
455
|
-
}
|
|
453
|
+
_chain;
|
|
456
454
|
get res() {
|
|
457
455
|
if (!this._res) {
|
|
458
456
|
this._res = new SilgiEventResponse();
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "silgi",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.41.
|
|
4
|
+
"version": "0.41.62",
|
|
5
5
|
"private": false,
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"exports": {
|
|
@@ -95,13 +95,13 @@
|
|
|
95
95
|
}
|
|
96
96
|
},
|
|
97
97
|
"dependencies": {
|
|
98
|
-
"@antfu/ni": "^24.
|
|
99
|
-
"@clack/prompts": "^0.
|
|
98
|
+
"@antfu/ni": "^24.4.0",
|
|
99
|
+
"@clack/prompts": "^0.11.0",
|
|
100
100
|
"@fastify/deepmerge": "^3.1.0",
|
|
101
101
|
"@graphql-tools/utils": "^10.8.6",
|
|
102
102
|
"@standard-community/standard-json": "^0.2.0",
|
|
103
103
|
"apiful": "^2.2.0",
|
|
104
|
-
"c12": "^3.0.
|
|
104
|
+
"c12": "^3.0.4",
|
|
105
105
|
"chokidar": "^4.0.3",
|
|
106
106
|
"citty": "^0.1.6",
|
|
107
107
|
"compatx": "^0.2.0",
|
|
@@ -124,7 +124,7 @@
|
|
|
124
124
|
"mlly": "^1.7.4",
|
|
125
125
|
"ofetch": "^1.4.1",
|
|
126
126
|
"ohash": "^2.0.11",
|
|
127
|
-
"oxc-parser": "^0.
|
|
127
|
+
"oxc-parser": "^0.72.0",
|
|
128
128
|
"pathe": "^2.0.3",
|
|
129
129
|
"perfect-debounce": "^1.0.0",
|
|
130
130
|
"picocolors": "^1.1.1",
|
|
@@ -132,8 +132,8 @@
|
|
|
132
132
|
"rfc6902": "^5.1.2",
|
|
133
133
|
"rou3": "^0.6.1",
|
|
134
134
|
"scule": "^1.3.0",
|
|
135
|
-
"semver": "^7.7.
|
|
136
|
-
"srvx": "^0.
|
|
135
|
+
"semver": "^7.7.2",
|
|
136
|
+
"srvx": "^0.7.1",
|
|
137
137
|
"std-env": "^3.9.0",
|
|
138
138
|
"tinyexec": "^1.0.1",
|
|
139
139
|
"tinyglobby": "^0.2.13",
|
|
@@ -145,24 +145,24 @@
|
|
|
145
145
|
"untyped": "^2.0.0"
|
|
146
146
|
},
|
|
147
147
|
"devDependencies": {
|
|
148
|
-
"@antfu/eslint-config": "^4.13.
|
|
149
|
-
"@nuxt/kit": "^3.17.
|
|
150
|
-
"@nuxt/schema": "^3.17.
|
|
151
|
-
"@silgi/ecosystem": "^0.
|
|
148
|
+
"@antfu/eslint-config": "^4.13.2",
|
|
149
|
+
"@nuxt/kit": "^3.17.4",
|
|
150
|
+
"@nuxt/schema": "^3.17.4",
|
|
151
|
+
"@silgi/ecosystem": "^0.7.0",
|
|
152
152
|
"@types/micromatch": "^4.0.9",
|
|
153
|
-
"@types/node": "^22.15.
|
|
153
|
+
"@types/node": "^22.15.21",
|
|
154
154
|
"@types/semver": "^7.7.0",
|
|
155
155
|
"@vitest/coverage-v8": "3.0.5",
|
|
156
|
-
"eslint": "^9.
|
|
156
|
+
"eslint": "^9.27.0",
|
|
157
157
|
"h3": "^1.15.3",
|
|
158
158
|
"next": "^15.3.2",
|
|
159
|
-
"nitropack": "^2.11.
|
|
160
|
-
"nuxt": "^3.17.
|
|
159
|
+
"nitropack": "^2.11.12",
|
|
160
|
+
"nuxt": "^3.17.4",
|
|
161
161
|
"typescript": "^5.8.3",
|
|
162
162
|
"unbuild": "^3.5.0",
|
|
163
|
-
"vitest": "^3.1.
|
|
164
|
-
"vue": "^3.5.
|
|
165
|
-
"zod": "^3.
|
|
163
|
+
"vitest": "^3.1.4",
|
|
164
|
+
"vue": "^3.5.14",
|
|
165
|
+
"zod": "^3.25.28"
|
|
166
166
|
},
|
|
167
167
|
"resolutions": {
|
|
168
168
|
"silgi": "link:."
|