silgi 0.36.8 → 0.36.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.
@@ -256,6 +256,36 @@ async function nextJS(silgi, skip = false) {
256
256
  write: true,
257
257
  getContents: () => template.join("\n")
258
258
  });
259
+ const routerPrefixs = [];
260
+ for (const route in silgi.services) {
261
+ const routeParts = route.split("/").filter(Boolean);
262
+ if (routeParts.length > 0) {
263
+ const prefix = `/${routeParts[0]}`;
264
+ if (!routerPrefixs.includes(prefix)) {
265
+ routerPrefixs.push(prefix);
266
+ }
267
+ }
268
+ }
269
+ for (const prefix of routerPrefixs) {
270
+ const file = `src/app${prefix}/[...all]/route.ts`;
271
+ const fileExists = existsSync(file);
272
+ if (!fileExists) {
273
+ const serverDirName = `@/${silgi.options.silgi.serverDir.split("/src/")[1]}/core`;
274
+ const template2 = `import { toNextJsHandler } from 'silgi/runtime/internal/next'
275
+ import { buildSilgi } from '${serverDirName}'
276
+
277
+
278
+ const silgi = await buildSilgi()
279
+
280
+ export const { GET, POST, PUT, DELETE, PATCH } = toNextJsHandler()`;
281
+ addTemplate({
282
+ filename: file,
283
+ where: ".silgi",
284
+ write: true,
285
+ getContents: () => template2
286
+ });
287
+ }
288
+ }
259
289
  }
260
290
 
261
291
  async function nitroFramework(silgi, skip = false) {
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import { defineCommand, runMain } from 'citty';
3
3
 
4
- const version = "0.36.8";
4
+ const version = "0.36.9";
5
5
  const packageJson = {
6
6
  version: version};
7
7
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "silgi",
3
3
  "type": "module",
4
- "version": "0.36.8",
4
+ "version": "0.36.9",
5
5
  "private": false,
6
6
  "sideEffects": false,
7
7
  "exports": {