silgi 0.36.11 → 0.36.13

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,31 +256,33 @@ 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);
259
+ silgi.hook("scanFiles:done", async (silgi2) => {
260
+ const routerPrefixs = [];
261
+ for (const route in silgi2.services) {
262
+ const routeParts = route.split("/").filter(Boolean);
263
+ if (routeParts.length > 0) {
264
+ const prefix = `/${routeParts[0]}`;
265
+ if (!routerPrefixs.includes(prefix)) {
266
+ routerPrefixs.push(prefix);
267
+ }
266
268
  }
267
269
  }
268
- }
269
- for (const prefix of routerPrefixs) {
270
- const file = resolve(silgi.options.srcDir, "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
- await writeFile(file, template2, true);
270
+ for (const prefix of routerPrefixs) {
271
+ const file = resolve(silgi2.options.srcDir, "app", prefix, "[...all]", "route.ts");
272
+ const fileExists = existsSync(file);
273
+ if (!fileExists) {
274
+ const serverDirName = `@/${silgi2.options.silgi.serverDir.split("/src/")[1]}/core`;
275
+ const template2 = `import { toNextJsHandler } from 'silgi/runtime/internal/next'
276
+ import { buildSilgi } from '${serverDirName}'
277
+
278
+
279
+ const silgi = await buildSilgi()
280
+
281
+ export const { GET, POST, PUT, DELETE, PATCH } = toNextJsHandler()`;
282
+ await writeFile(file, template2, true);
283
+ }
282
284
  }
283
- }
285
+ });
284
286
  }
285
287
 
286
288
  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.11";
4
+ const version = "0.36.13";
5
5
  const packageJson = {
6
6
  version: version};
7
7
 
@@ -3,9 +3,6 @@ const next = defineSilgiPreset(
3
3
  {
4
4
  serverDir: "{{ rootDir }}/src/server",
5
5
  srcDir: "{{ rootDir }}/src",
6
- build: {
7
- dir: "{{ rootDir }}/.next"
8
- },
9
6
  envOptions: {
10
7
  prefix: "NEXT_",
11
8
  altPrefix: "SILGI_"
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "silgi",
3
3
  "type": "module",
4
- "version": "0.36.11",
4
+ "version": "0.36.13",
5
5
  "private": false,
6
6
  "sideEffects": false,
7
7
  "exports": {