File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -10,9 +10,7 @@ import {
10
10
} from '@epic-web/workshop-utils/apps.server'
11
11
12
12
const allApps = await getApps ( )
13
- const uniqueApps = allApps . filter (
14
- ( a , index ) => allApps . findIndex ( b => b . fullPath === a . fullPath ) === index ,
15
- )
13
+ console . log ( allApps )
16
14
const problemApps = allApps . filter ( isProblemApp )
17
15
18
16
if ( ! process . env . SKIP_PLAYWRIGHT ) {
@@ -56,7 +54,7 @@ if (!process.env.SKIP_PRISMA) {
56
54
for ( const app of allApps ) {
57
55
try {
58
56
if ( await fsExtra . exists ( path . join ( app . fullPath , 'prisma' ) ) ) {
59
- await $ ( { cwd : app . fullPath , all : true } ) `prisma generate`
57
+ await $ ( { cwd : app . fullPath , all : true } ) `prisma generate --sql `
60
58
}
61
59
} catch ( prismaGenerateResult ) {
62
60
console . log ( prismaGenerateResult . all )
You can’t perform that action at this time.
0 commit comments