Skip to content

Commit

Permalink
fix: add nodeVersion in gradle plugin settings (#20059) (#20089)
Browse files Browse the repository at this point in the history
Prior to this fix, the settings declared in Gradle were not being passed to the plugin. For example, changing the nodeVersion in build.gradle did not update the actual nodeVersion used.

Co-authored-by: Mark Andreev <[email protected]>
  • Loading branch information
vaadin-bot and mrk-andreev authored Sep 30, 2024
1 parent 8fc94e1 commit 06c7707
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ internal class PrepareFrontendInputProperties(private val config: PluginEffectiv
settings.isForceAlternativeNode = config.requireHomeNodeExec.get()
settings.isUseGlobalPnpm = config.useGlobalPnpm.get()
settings.isAutoUpdate = config.nodeAutoUpdate.get()
settings.nodeVersion = config.nodeVersion.get()
FrontendTools(settings)
}
}

0 comments on commit 06c7707

Please sign in to comment.