fix(cli): JS bindgen file now respects destDir (#1481)
This commit is contained in:
parent
f24c9e6e83
commit
cb529d21cf
1 changed files with 1 additions and 1 deletions
|
@ -600,7 +600,7 @@ export class BuildCommand extends Command {
|
|||
this.jsBinding &&
|
||||
this.jsBinding !== 'false' &&
|
||||
this.appendPlatformToFilename
|
||||
? join(process.cwd(), this.jsBinding)
|
||||
? join(process.cwd(), this.destDir ?? '.', this.jsBinding)
|
||||
: null
|
||||
const idents = await processIntermediateTypeFile(
|
||||
intermediateTypeFile,
|
||||
|
|
Loading…
Reference in a new issue