File tree 3 files changed +2
-3
lines changed
3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ import colors from 'colors';
3
3
import path from 'path' ;
4
4
import { CliError } from '../cli-error' ;
5
5
import {
6
- checkNewVersion ,
7
6
checkRequiredPackage ,
8
7
getDefaultSchemaLocation ,
9
8
getZenStackPackages ,
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import fs from 'fs';
6
6
import path from 'path' ;
7
7
import stripColor from 'strip-color' ;
8
8
import telemetry from '../../telemetry' ;
9
- import { execPackage , execPackageAsync } from '../../utils/exec-utils' ;
9
+ import { execPackageAsync } from '../../utils/exec-utils' ;
10
10
import { findUp } from '../../utils/pkg-utils' ;
11
11
import { PrismaSchemaGenerator } from './schema-generator' ;
12
12
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ export async function execAsync(
31
31
32
32
export async function execPackageAsync (
33
33
cmd : string ,
34
- options ?: Omit < ExecSyncOptions , 'env' > & { env ?: Record < string , string > ; prefix ?: string }
34
+ _options ?: Omit < ExecSyncOptions , 'env' > & { env ?: Record < string , string > ; prefix ?: string }
35
35
) {
36
36
return new Promise ( ( resolve , reject ) => {
37
37
const packageManager = process ?. versions ?. bun ? 'bunx' : 'npx' ;
You can’t perform that action at this time.
0 commit comments