Skip to content

Commit 9cb91f3

Browse files
committed
fix styling
1 parent 9384a86 commit 9cb91f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/schema/src/plugins/prisma/schema-generator.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ export class PrismaSchemaGenerator {
142142
if (options.format === true) {
143143
try {
144144
// run 'prisma format'
145-
await execPackage(`prisma format --schema ${outFile}`, {stdio: 'ignore'});
145+
await execPackage(`prisma format --schema ${outFile}`, { stdio: 'ignore' });
146146
} catch {
147147
warnings.push(`Failed to format Prisma schema file`);
148148
}
@@ -157,7 +157,7 @@ export class PrismaSchemaGenerator {
157157
}
158158
try {
159159
// run 'prisma generate'
160-
await execPackage(generateCmd, {stdio: 'ignore'});
160+
await execPackage(generateCmd, { stdio: 'ignore' });
161161
} catch {
162162
await this.trackPrismaSchemaError(outFile);
163163
try {

0 commit comments

Comments
 (0)