Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
azu committed Jan 2, 2024
1 parent 7c0adcf commit 338588b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -122,11 +122,11 @@ const filterRules = ${stringify(
)};
const plugins = ${stringify(
config.plugins.map((rule, index) => {
config.plugins.map((plugin, index) => {
return {
pluginId: rule.pluginId,
pluginId: plugin.pluginId,
plugin: `!__moduleInterop(__plugin${index})__!`,
options: rule.options
options: plugin.options
};
})
)};
Expand Down

0 comments on commit 338588b

Please sign in to comment.