silgi 0.41.60 → 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.
@@ -1168,40 +1168,16 @@ async function prepareConfigs(silgi = useSilgiCLI()) {
1168
1168
 
1169
1169
  async function prepareScanFile(silgi) {
1170
1170
  const { genImports, genTypeImports, addImportItem, addImportItemType } = addImports({
1171
- imports: [
1172
- {
1173
- specifier: "silgi",
1174
- imports: [
1175
- {
1176
- name: "createSilgi"
1177
- },
1178
- {
1179
- name: "createShared"
1180
- },
1181
- {
1182
- name: "deepMergeObjects"
1183
- }
1184
- ]
1185
- },
1186
- {
1187
- specifier: "./configs",
1188
- imports: [
1189
- {
1190
- name: "cliConfigs"
1191
- }
1192
- ]
1193
- }
1194
- ],
1195
- typeImports: [
1196
- {
1197
- specifier: "silgi/types",
1198
- imports: [
1199
- {
1200
- name: "SilgiRuntimeOptions"
1201
- }
1202
- ]
1203
- }
1204
- ]
1171
+ // typeImports: [
1172
+ // {
1173
+ // specifier: 'silgi/types',
1174
+ // imports: [
1175
+ // {
1176
+ // name: 'SilgiRuntimeOptions',
1177
+ // },
1178
+ // ],
1179
+ // },
1180
+ // ],
1205
1181
  });
1206
1182
  const scanned = {
1207
1183
  services: [],
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import { defineCommand, runMain } from 'citty';
3
3
 
4
- const version = "0.41.60";
4
+ const version = "0.41.62";
5
5
  const packageJson = {
6
6
  version: version};
7
7
 
@@ -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
- get _chain(): Promise<unknown> | undefined;
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;
@@ -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
- get _chain() {
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.60",
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.3.0",
99
- "@clack/prompts": "^0.10.1",
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.3",
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.68.1",
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.1",
136
- "srvx": "^0.6.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.0",
149
- "@nuxt/kit": "^3.17.2",
150
- "@nuxt/schema": "^3.17.2",
151
- "@silgi/ecosystem": "^0.6.8",
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.16",
153
+ "@types/node": "^22.15.21",
154
154
  "@types/semver": "^7.7.0",
155
155
  "@vitest/coverage-v8": "3.0.5",
156
- "eslint": "^9.26.0",
156
+ "eslint": "^9.27.0",
157
157
  "h3": "^1.15.3",
158
158
  "next": "^15.3.2",
159
- "nitropack": "^2.11.11",
160
- "nuxt": "^3.17.2",
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.3",
164
- "vue": "^3.5.13",
165
- "zod": "^3.24.4"
163
+ "vitest": "^3.1.4",
164
+ "vue": "^3.5.14",
165
+ "zod": "^3.25.28"
166
166
  },
167
167
  "resolutions": {
168
168
  "silgi": "link:."