Skip to content

Commit 75c1519

Browse files
committed
WIP
1 parent a443184 commit 75c1519

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

packages/schema/src/cli/actions/generate.ts

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import colors from 'colors';
33
import path from 'path';
44
import { CliError } from '../cli-error';
55
import {
6-
checkNewVersion,
76
checkRequiredPackage,
87
getDefaultSchemaLocation,
98
getZenStackPackages,

packages/schema/src/plugins/prisma/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import fs from 'fs';
66
import path from 'path';
77
import stripColor from 'strip-color';
88
import telemetry from '../../telemetry';
9-
import { execPackage, execPackageAsync } from '../../utils/exec-utils';
9+
import { execPackageAsync } from '../../utils/exec-utils';
1010
import { findUp } from '../../utils/pkg-utils';
1111
import { PrismaSchemaGenerator } from './schema-generator';
1212

packages/schema/src/utils/exec-utils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export async function execAsync(
3131

3232
export async function execPackageAsync(
3333
cmd: string,
34-
options?: Omit<ExecSyncOptions, 'env'> & { env?: Record<string, string>; prefix?: string }
34+
_options?: Omit<ExecSyncOptions, 'env'> & { env?: Record<string, string>; prefix?: string }
3535
) {
3636
return new Promise((resolve, reject) => {
3737
const packageManager = process?.versions?.bun ? 'bunx' : 'npx';

0 commit comments

Comments
 (0)