Skip to content

Commit

Permalink
fix(rust): add dts option to napi executor
Browse files Browse the repository at this point in the history
  • Loading branch information
Cammisuli committed Nov 14, 2024
1 parent 1f8a32b commit 9eee2e8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/rust/src/executors/napi/executor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ export default async function runExecutor(

buildOptions.platform = true;
buildOptions.jsBinding = options.jsFile;
buildOptions.dts = options.dts;
buildOptions.outputDir = options.dist;
buildOptions.manifestPath = join(projectRoot ?? '.', 'Cargo.toml');
buildOptions.packageJsonPath = packageJson;
Expand Down
1 change: 1 addition & 0 deletions packages/rust/src/executors/napi/schema.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
export interface NapiExecutorSchema {
dist: string;
jsFile: string;
dts?: string;
release?: boolean;
target?: string;
zig?: boolean;
Expand Down
4 changes: 4 additions & 0 deletions packages/rust/src/executors/napi/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
"jsFile": {
"type": "string"
},
"dts": {
"type": "string",
"default": "index.d.ts"
},
"release": {
"type": "boolean",
"default": false
Expand Down

0 comments on commit 9eee2e8

Please sign in to comment.