create-prisma 0.11.3-pr.87.307.1 → 0.11.3
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
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { a as ApplicationLayer } from "./json-output-
|
|
2
|
+
import { a as ApplicationLayer } from "./json-output-DzDD1nb9.mjs";
|
|
3
3
|
import { runCreatePrismaCli } from "./index.mjs";
|
|
4
4
|
import { Effect } from "effect";
|
|
5
5
|
import { NodeRuntime } from "@effect/platform-node-shared";
|
package/dist/index.mjs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { _ as databaseProviderInputs, c as CreateCommandResultSchema, d as CreateCommandInputSchema, f as CreateTemplateSchema, g as createTemplates, h as authoringStyles, i as getErrorMessage, l as createCommandFailureResult, m as PackageManagerSchema, n as writeJsonResult, o as applicationRuntime, p as DatabaseProviderSchema, r as runCreateCommandEffect, s as CREATE_PRISMA_RESULT_SCHEMA_VERSION, t as isJsonOutputRequested, u as AuthoringStyleSchema, v as normalizeDatabaseProvider, y as packageManagers } from "./json-output-
|
|
2
|
+
import { _ as databaseProviderInputs, c as CreateCommandResultSchema, d as CreateCommandInputSchema, f as CreateTemplateSchema, g as createTemplates, h as authoringStyles, i as getErrorMessage, l as createCommandFailureResult, m as PackageManagerSchema, n as writeJsonResult, o as applicationRuntime, p as DatabaseProviderSchema, r as runCreateCommandEffect, s as CREATE_PRISMA_RESULT_SCHEMA_VERSION, t as isJsonOutputRequested, u as AuthoringStyleSchema, v as normalizeDatabaseProvider, y as packageManagers } from "./json-output-DzDD1nb9.mjs";
|
|
3
3
|
import { Console, Effect, Option } from "effect";
|
|
4
4
|
import { Argument, CliError, Command, Flag } from "effect/unstable/cli";
|
|
5
5
|
|
|
6
6
|
//#region src/index.ts
|
|
7
|
-
const CLI_VERSION = "0.11.3
|
|
7
|
+
const CLI_VERSION = "0.11.3";
|
|
8
8
|
const optionalArgument = (name, description) => Argument.string(name).pipe(Argument.withDescription(description), Argument.optional, Argument.map(Option.getOrUndefined));
|
|
9
9
|
const optionalBoolean = (name, description) => Flag.boolean(name).pipe(Flag.withDescription(description), Flag.optional, Flag.map(Option.getOrUndefined));
|
|
10
10
|
const optionalString = (name, description) => Flag.string(name).pipe(Flag.withDescription(description), Flag.optional, Flag.map(Option.getOrUndefined));
|
|
@@ -309,14 +309,20 @@ const applicationRuntime = ManagedRuntime.make(ApplicationLayer);
|
|
|
309
309
|
|
|
310
310
|
//#endregion
|
|
311
311
|
//#region src/telemetry/client.ts
|
|
312
|
-
const TELEMETRY_API_KEY = "";
|
|
312
|
+
const TELEMETRY_API_KEY = "phc_cmc85avbWyuJ2JyKdGPdv7dxXli8xLdWDBPbvIXWJfs";
|
|
313
313
|
const TELEMETRY_HOST = "https://us.i.posthog.com";
|
|
314
314
|
const TELEMETRY_CONFIG_FILE = "telemetry.json";
|
|
315
315
|
const TELEMETRY_TIMEOUT_MS = 2e3;
|
|
316
316
|
const AnonymousId = Schema.String.check(Schema.isUUID(4));
|
|
317
317
|
const decodeAnonymousId = Schema.decodeUnknownExit(AnonymousId);
|
|
318
|
+
const isTruthyEnvValue = (value) => [
|
|
319
|
+
"1",
|
|
320
|
+
"true",
|
|
321
|
+
"yes",
|
|
322
|
+
"on"
|
|
323
|
+
].includes(String(value ?? "").trim().toLowerCase());
|
|
318
324
|
function shouldDisableTelemetry() {
|
|
319
|
-
return
|
|
325
|
+
return isTruthyEnvValue(process.env.CI) || isTruthyEnvValue(process.env.GITHUB_ACTIONS) || process.env.CREATE_PRISMA_DISABLE_TELEMETRY !== void 0 || process.env.CREATE_PRISMA_TELEMETRY_DISABLED !== void 0 || process.env.DO_NOT_TRACK !== void 0;
|
|
320
326
|
}
|
|
321
327
|
function getTelemetryConfigDir() {
|
|
322
328
|
if (process.platform === "darwin") return path.join(os.homedir(), "Library", "Application Support", "create-prisma");
|
|
@@ -339,7 +345,7 @@ const getAnonymousIdEffect = Effect.fn("Telemetry.getAnonymousId")(function* ()
|
|
|
339
345
|
return anonymousId;
|
|
340
346
|
});
|
|
341
347
|
const getCommonProperties = () => ({
|
|
342
|
-
"cli-version": "0.11.3
|
|
348
|
+
"cli-version": "0.11.3",
|
|
343
349
|
"node-version": process.version,
|
|
344
350
|
platform: process.platform,
|
|
345
351
|
arch: process.arch
|
package/package.json
CHANGED