Skip to content

Commit

Permalink
fix: add nodeVersion in gradle plugin settings (#20059)
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.
  • Loading branch information
mrk-andreev authored and vaadin-bot committed Sep 27, 2024
1 parent 59bf5c5 commit df9c15b
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 df9c15b

Please sign in to comment.