@prisma/cli-init 0.0.0-dev.202512161640 → 0.0.0-dev.202512161645
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 +3 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3597,10 +3597,11 @@ var defaultEnv = async (url2, debug3 = false, comments = true) => {
|
|
|
3597
3597
|
}
|
|
3598
3598
|
const server = await startPrismaDevServer({
|
|
3599
3599
|
databasePort: state.databasePort,
|
|
3600
|
+
debug: debug3,
|
|
3600
3601
|
dryRun: true,
|
|
3602
|
+
persistenceMode: "stateful",
|
|
3601
3603
|
port: state.port,
|
|
3602
|
-
shadowDatabasePort: state.shadowDatabasePort
|
|
3603
|
-
debug: debug3
|
|
3604
|
+
shadowDatabasePort: state.shadowDatabasePort
|
|
3604
3605
|
});
|
|
3605
3606
|
url2 = server.ppg.url;
|
|
3606
3607
|
}
|