minor fixes for nextjs

This commit is contained in:
dswbx
2025-03-03 07:10:32 +01:00
parent 09074f6591
commit 00f52eb096
6 changed files with 19 additions and 5 deletions

View File

@@ -68,7 +68,7 @@ export async function replacePackageJsonVersions(
export async function updateBkndPackages(dir?: string, map?: Record<string, string>) {
const versions = {
bknd: "^" + (await sysGetVersion()),
bknd: await sysGetVersion(),
...(map ?? {}),
};
await replacePackageJsonVersions(

View File

@@ -264,7 +264,6 @@ export class FetchPromise<T = ApiResponse<any>> implements Promise<T> {
} else {
resBody = res.body;
}
console.groupEnd();
return createResponseProxy<T>(res, resBody, resData);
}

View File

@@ -286,7 +286,7 @@ export class ModuleManager {
return result as unknown as ConfigTable;
},
this.verbosity > Verbosity.silent ? [] : ["log", "error", "warn"],
this.verbosity > Verbosity.silent ? [] : ["error"],
);
this.logger