Skip to content

Commit

Permalink
fix: add nodeVersion in gradle plugin settings (#20059) (#20090)
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 9978b1b commit 4e2d9ec
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,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 4e2d9ec

Please sign in to comment.