BowerRunner.

Install(BowerInstallSettings) Method

Summary

execute 'bower install' with options
Assembly
Cake.Bower.dll
Namespace
Cake.Bower
Containing Type
BowerRunner

Syntax

public IBowerRunnerCommands Install(BowerInstallSettings settings)

Examples

Run 'bower install'

Task("Bower")
    .Does(() =>
{
    var settings = new BowerInstallSettings()
        .WithSave()
        .ForProduction();
    Bower.Install(settings));
});

Parameters

Name Type Description
settings BowerInstallSettings options when running 'bower install'

Return Value

Type Description
IBowerRunnerCommands