Commit 932400d 1 parent 9b6f187 commit 932400d Copy full SHA for 932400d
File tree 4 files changed +14
-8
lines changed
query-engine/driver-adapters
connector-test-kit-executor
4 files changed +14
-8
lines changed Original file line number Diff line number Diff line change @@ -49,3 +49,4 @@ prisma-schema-wasm/nodejs
49
49
50
50
# Ignore pnpm-lock.yaml
51
51
query-engine /driver-adapters /pnpm-lock.yaml
52
+ * .json
Original file line number Diff line number Diff line change @@ -285,9 +285,14 @@ test-driver-adapter-planetscale: test-planetscale-vitess8
285
285
build-qe-napi :
286
286
cargo build --package query-engine-node-api
287
287
288
- build-connector-kit-js : ensure-prisma-present
288
+ build-connector-kit-js : build-driver-adapters
289
289
cd query-engine/driver-adapters && pnpm i && pnpm build
290
290
291
+ build-driver-adapters : ensure-prisma-present
292
+ @echo " Building driver adapters..."
293
+ @cd ../prisma && pnpm --filter " *adapter*" i
294
+ @echo " Driver adapters build completed." ;
295
+
291
296
ensure-prisma-present :
292
297
@if [ -d ../prisma ]; then \
293
298
cd " $( realpath ../prisma) " && git fetch origin main; \
Original file line number Diff line number Diff line change 10
10
"module" : " dist/index.mjs" ,
11
11
"private" : true ,
12
12
"scripts" : {
13
- "build" : " tsup ./src/index.ts --format esm --dts" ,
14
- "lint" : " tsc -p ./tsconfig.build.json"
13
+ "build" : " tsup ./src/index.ts --format esm --dts"
15
14
},
16
15
"keywords" : [],
17
16
"author" : " " ,
34
33
"devDependencies" : {
35
34
"@types/node" : " ^20.5.1" ,
36
35
"tsup" : " ^7.2.0" ,
37
- "tsx" : " ^3.12.7" ,
38
- "typescript" : " ^5.1.6"
36
+ "typescript" : " 5.2.2"
39
37
}
40
38
}
Original file line number Diff line number Diff line change 10
10
"license" : " Apache-2.0" ,
11
11
"scripts" : {
12
12
"build" : " pnpm -r run build" ,
13
- "lint" : " pnpm -r run lint"
13
+ "lint" : " pnpm -r run lint" ,
14
+ "clean" : " git clean -nXd -e !query-engine/driver-adapters"
14
15
},
15
16
"keywords" : [],
16
17
"author" : " " ,
17
18
"devDependencies" : {
18
19
"@types/node" : " ^20.5.1" ,
19
20
"tsup" : " ^7.2.0" ,
20
- "tsx" : " ^3.12.7" ,
21
- "typescript" : " ^5.1.6"
21
+ "typescript" : " 5.2.2" ,
22
+ "esbuild" : " 0.19.5" ,
23
+ "esbuild-register" : " 3.5.0"
22
24
}
23
25
}
You can’t perform that action at this time.
0 commit comments