Skip to content

Commit

Permalink
fix: add nodeVersion in gradle plugin settings (#20059) (#20091)
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 <mark.andreev@gmail.com>
  • Loading branch information
vaadin-bot and mrk-andreev authored Sep 27, 2024
1 parent 900389f commit 09c919a
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,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 09c919a

Please sign in to comment.