BowerRunner.

Install(string, Action<BowerInstallSettings>) Method

Summary

execute 'bower install' for a particular package
Assembly
Cake.Bower.dll
Namespace
Cake.Bower
Containing Type
BowerRunner

Syntax

public IBowerRunnerCommands Install(string package, Action<BowerInstallSettings> configure = null)

Examples

Run 'bower install'

Task("Bower")
    .Does(() =>
{
    Bower.Install("jquery"));
});

Parameters

Name Type Description
package string endpoint/package to install when using 'bower install'
configure Action<BowerInstallSettings> options when running 'bower install'

Return Value

Type Description
IBowerRunnerCommands