File tree Expand file tree Collapse file tree 3 files changed +208
-612
lines changed Expand file tree Collapse file tree 3 files changed +208
-612
lines changed Original file line number Diff line number Diff line change 74
74
},
75
75
"dependencies" : {
76
76
"@trigger.dev/core" : " workspace:4.0.0-v4-beta.18" ,
77
- "fast-glob" : " ^3.3.3" ,
78
77
"pkg-types" : " ^1.1.3" ,
79
78
"tinyglobby" : " ^0.2.2" ,
80
79
"tsconfck" : " 3.1.3"
Original file line number Diff line number Diff line change 1
1
import { BuildManifest , BuildTarget } from "@trigger.dev/core/v3" ;
2
2
import { binaryForRuntime , BuildContext , BuildExtension } from "@trigger.dev/core/v3/build" ;
3
3
import assert from "node:assert" ;
4
- import { glob } from 'fast-glob ' ;
4
+ import { glob } from 'tinyglobby ' ;
5
5
import { existsSync } from "node:fs" ;
6
6
import { cp , readdir } from "node:fs/promises" ;
7
7
import { dirname , join , resolve } from "node:path" ;
@@ -162,7 +162,7 @@ export class PrismaExtension implements BuildExtension {
162
162
context . logger . debug ( `Using the schema folder: ${ this . _resolvedSchemaPath } ` ) ;
163
163
164
164
// Find all the files in schemaDir that end with .prisma (excluding the schema.prisma file)
165
- const prismaFiles = await glob ( "**/*.prisma" , {
165
+ const prismaFiles = await glob ( [ "**/*.prisma" ] , {
166
166
cwd : this . _resolvedSchemaPath
167
167
} )
168
168
You can’t perform that action at this time.
0 commit comments