@prisma/cli-init 0.0.0-dev.202512121230 → 0.0.0-dev.202512121236
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/index.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2603,7 +2603,7 @@ async function dumpDB(options) {
|
|
|
2603
2603
|
// ../../dev/server/src/http.ts
|
|
2604
2604
|
import { createServer as createServer2 } from "http";
|
|
2605
2605
|
import { promisify } from "util";
|
|
2606
|
-
import
|
|
2606
|
+
import getPlatformModule from "@prisma/get-platform";
|
|
2607
2607
|
async function startHTTPServer(dbServer, serverState) {
|
|
2608
2608
|
const { port } = serverState;
|
|
2609
2609
|
if (serverState.dryRun) {
|
|
@@ -2642,7 +2642,7 @@ async function getApp(port, dbServer, serverState) {
|
|
|
2642
2642
|
import("./utility-QJR3G2JJ.js")
|
|
2643
2643
|
]);
|
|
2644
2644
|
const app = new Hono();
|
|
2645
|
-
const platform = await getPlatformInfo();
|
|
2645
|
+
const platform = await getPlatformModule.getPlatformInfo();
|
|
2646
2646
|
if (debug3) {
|
|
2647
2647
|
console.debug("[Accelerate] platform info: %s", JSON.stringify(platform));
|
|
2648
2648
|
}
|