@prisma/cli 8.0.0-rc.9-dev.74 → 8.0.0-rc.9-dev.75

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.
Files changed (2) hide show
  1. package/dist/cli.js +2 -2
  2. package/package.json +5 -5
package/dist/cli.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import { createRequire } from "node:module";
3
3
  import process$1 from "node:process";
4
- import { SERVICE_TOKEN_ENV_VAR, claimedExpiresAt, claimedIdentity, createCli, credentialWorkspaceId, credentialWorkspaceMismatchError, credentialsRequiredError, defineCommand, defineCommandFamily, defineConfigSection, defineSessionCommand, emptyServiceTokenError, flag, loadConfig, noSessionForWorkspaceError, positional, readActiveAccessToken, telemetryCommandGroup } from "@prisma/cli-engine";
4
+ import { SERVICE_TOKEN_ENV_VAR, claimedExpiresAt, claimedIdentity, createCli, credentialWorkspaceId, credentialWorkspaceMismatchError, credentialsRequiredError, defineCommand, defineCommandFamily, defineConfigSection, defineSessionCommand, detectCI, emptyServiceTokenError, flag, loadConfig, noSessionForWorkspaceError, positional, readActiveAccessToken, telemetryCommandGroup } from "@prisma/cli-engine";
5
5
  import { createComposerFamily } from "@prisma/composer-cli/family";
6
6
  import { ormCommandFamily } from "@prisma/orm-toolchain/cli";
7
7
  import { CliStructuredError, notOk, ok } from "@prisma/cli-engine/protocol";
@@ -14164,7 +14164,7 @@ function flagTokens(argv) {
14164
14164
  function isSuppressedByInvocation(runtime) {
14165
14165
  const env = runtime.env;
14166
14166
  if (env["PRISMA_SKILLS_CHECK"] === "0") return true;
14167
- if (env.CI || env.GITHUB_ACTIONS) return true;
14167
+ if (detectCI(env)) return true;
14168
14168
  const argv = flagTokens(runtime.argv);
14169
14169
  const group = invokedGroup(argv);
14170
14170
  if (group === "skills" || group === "init") return true;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prisma/cli",
3
- "version": "8.0.0-rc.9-dev.74",
3
+ "version": "8.0.0-rc.9-dev.75",
4
4
  "description": "Command-line interface for the Prisma Developer Platform.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -40,7 +40,7 @@
40
40
  "license": "Apache-2.0",
41
41
  "dependencies": {
42
42
  "@manypkg/tools": "^2.1.2",
43
- "@prisma/cli-engine": "0.2.1",
43
+ "@prisma/cli-engine": "0.2.2",
44
44
  "@prisma/composer-cli": "0.12.0-dev.1",
45
45
  "@prisma/compute-sdk": "0.39.0",
46
46
  "@prisma/credentials-store": "^7.8.0",
@@ -54,9 +54,9 @@
54
54
  },
55
55
  "devDependencies": {
56
56
  "@prisma/composer": "0.12.0-dev.1",
57
- "@repo/cli-conformance": "8.0.0-rc.9-dev.74",
58
- "@repo/cli-telemetry": "8.0.0-rc.9-dev.74",
59
- "@repo/tsconfig": "8.0.0-rc.9-dev.74",
57
+ "@repo/cli-conformance": "8.0.0-rc.9-dev.75",
58
+ "@repo/cli-telemetry": "8.0.0-rc.9-dev.75",
59
+ "@repo/tsconfig": "8.0.0-rc.9-dev.75",
60
60
  "@types/node": "^22.19.19",
61
61
  "tsdown": "^0.21.10",
62
62
  "tsx": "^4.22.4",