create-prisma 0.4.2-pr.34.119.1 → 0.4.2-pr.34.121.1
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.mjs
CHANGED
|
@@ -1793,7 +1793,7 @@ async function collectComputeDeployContext(input, options) {
|
|
|
1793
1793
|
else {
|
|
1794
1794
|
const confirmed = await confirm({
|
|
1795
1795
|
message: "Deploy to Prisma Compute now?",
|
|
1796
|
-
initialValue:
|
|
1796
|
+
initialValue: false
|
|
1797
1797
|
});
|
|
1798
1798
|
if (isCancel(confirmed)) {
|
|
1799
1799
|
cancel("Operation cancelled.");
|
|
@@ -2021,7 +2021,7 @@ async function getAnonymousId() {
|
|
|
2021
2021
|
}
|
|
2022
2022
|
function getCommonProperties() {
|
|
2023
2023
|
return {
|
|
2024
|
-
"cli-version": "0.4.2-pr.34.
|
|
2024
|
+
"cli-version": "0.4.2-pr.34.121.1",
|
|
2025
2025
|
"node-version": process.version,
|
|
2026
2026
|
platform: process.platform,
|
|
2027
2027
|
arch: process.arch
|
package/dist/index.mjs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { a as DatabaseUrlSchema, i as DatabaseProviderSchema, n as CreateCommandInputSchema, o as PackageManagerSchema, r as CreateTemplateSchema, s as SchemaPresetSchema, t as runCreateCommand } from "./create-
|
|
2
|
+
import { a as DatabaseUrlSchema, i as DatabaseProviderSchema, n as CreateCommandInputSchema, o as PackageManagerSchema, r as CreateTemplateSchema, s as SchemaPresetSchema, t as runCreateCommand } from "./create-BRtbkiNj.mjs";
|
|
3
3
|
import { os } from "@orpc/server";
|
|
4
4
|
import { createCli } from "trpc-cli";
|
|
5
5
|
|
|
6
6
|
//#region src/index.ts
|
|
7
|
-
const CLI_VERSION = "0.4.2-pr.34.
|
|
7
|
+
const CLI_VERSION = "0.4.2-pr.34.121.1";
|
|
8
8
|
const router = os.router({ create: os.meta({
|
|
9
9
|
description: "Create a new project with Prisma setup",
|
|
10
10
|
default: true,
|
package/package.json
CHANGED