Skip to content

Commit

Permalink
fix(javascript): mkdir -p on pnpm build (#896)
Browse files Browse the repository at this point in the history
  • Loading branch information
nbsp authored Nov 27, 2024
1 parent f5f5f1b commit 24e8b6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/javascript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
},
"scripts": {
"generate:version": "genversion --esm --semi src/gen/version.ts",
"generate:proto": "mkdir src/gen && protoc --es_out src/gen --es_opt target=ts -I=../../protobufs ../../protobufs/livekit_*.proto",
"generate:proto": "mkdir -p src/gen && protoc --es_out src/gen --es_opt target=ts -I=../../protobufs ../../protobufs/livekit_*.proto",
"prebuild": "pnpm generate:version && pnpm generate:proto",
"build": "pnpm prebuild && tsup --onSuccess \"tsc --declaration --emitDeclarationOnly\""
},
Expand Down

0 comments on commit 24e8b6d

Please sign in to comment.