diff --git a/src/Cake.Gulp/GulpLocalRunnerSettings.cs b/src/Cake.Gulp/GulpLocalRunnerSettings.cs index 225452d..98eb877 100644 --- a/src/Cake.Gulp/GulpLocalRunnerSettings.cs +++ b/src/Cake.Gulp/GulpLocalRunnerSettings.cs @@ -24,5 +24,17 @@ public GulpLocalRunnerSettings SetPathToGulpJs(FilePath gulpJs) PathToGulpJs = gulpJs; return this; } + + /// + /// Overrides the default path to the NodeJs tool that will be used to run gulp. + /// + /// path to NodeJs + /// + /// + public GulpLocalRunnerSettings SetToolPath(FilePath toolPath) + { + ToolPath = toolPath; + return this; + } } } \ No newline at end of file