silgi 0.36.8 → 0.36.10
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/build.mjs +26 -1
- package/dist/cli/index.mjs +1 -1
- package/dist/kit/index.mjs +1 -1
- package/package.json +1 -1
package/dist/cli/build.mjs
CHANGED
|
@@ -2,7 +2,7 @@ import { consola } from 'consola';
|
|
|
2
2
|
import { createHooks, createDebugger } from 'hookable';
|
|
3
3
|
import { resolve, join, relative, extname, basename, dirname, isAbsolute } from 'pathe';
|
|
4
4
|
import { useSilgiCLI, replaceRuntimeValues, silgiCLICtx, autoImportTypes } from 'silgi';
|
|
5
|
-
import { isPresents, addTemplate, addCoreFile, genEnsureSafeVar, relativeWithDot, hash, removeExtension, resolveAlias, directoryToURL, addImports, baseHeaderBannerComment,
|
|
5
|
+
import { isPresents, addTemplate, addCoreFile, genEnsureSafeVar, writeFile, relativeWithDot, hash, removeExtension, resolveAlias, directoryToURL, addImports, baseHeaderBannerComment, normalizeTemplate, useLogger, resolveSilgiPath, hasSilgiModule, toArray, isDirectory } from 'silgi/kit';
|
|
6
6
|
import { runtimeDir } from 'silgi/runtime/meta';
|
|
7
7
|
import { scanExports, createUnimport, toExports } from 'unimport';
|
|
8
8
|
import * as p from '@clack/prompts';
|
|
@@ -256,6 +256,31 @@ 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
|
+
writeFile(file, template2, true);
|
|
282
|
+
}
|
|
283
|
+
}
|
|
259
284
|
}
|
|
260
285
|
|
|
261
286
|
async function nitroFramework(silgi, skip = false) {
|
package/dist/cli/index.mjs
CHANGED
package/dist/kit/index.mjs
CHANGED
|
@@ -260,7 +260,7 @@ async function writeFile(file, contents, log = false) {
|
|
|
260
260
|
typeof contents === "string" ? "utf8" : void 0
|
|
261
261
|
);
|
|
262
262
|
if (log) {
|
|
263
|
-
|
|
263
|
+
silgi.logger.info("Generated", prettyPath(file));
|
|
264
264
|
}
|
|
265
265
|
}
|
|
266
266
|
async function isDirectory$1(path) {
|