Skip to content

Commit

Permalink
removed bindConfig passthrough for PluginProject
Browse files Browse the repository at this point in the history
  • Loading branch information
krisbitney committed Sep 14, 2023
1 parent 2298155 commit 81c89dd
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/cli/src/lib/project/PluginProject.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,7 @@ export class PluginProject extends Project<PluginManifest> {
public async generateSchemaBindings(
abi: WrapAbi,
generationSubPath?: string,
bindgenUri?: string,
bindConfig?: Record<string, unknown>
bindgenUri?: string
): Promise<BindOutput> {
const moduleDirectory = await this.getGenerationDirectory(
generationSubPath
Expand All @@ -141,7 +140,6 @@ export class PluginProject extends Project<PluginManifest> {
abi,
},
outputDirAbs: moduleDirectory,
config: bindConfig,
};

return bindSchema(options, bindgenUri);
Expand Down

0 comments on commit 81c89dd

Please sign in to comment.