BowerRunner.

Info(Action<BowerInfoSettings>) Method

Summary

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

Syntax

public IBowerRunnerCommands Info(Action<BowerInfoSettings> configure = null)

Examples

Run 'bower info'

Task("Bower")
    .Does(() =>
{
    Bower.Info(s => s.ForPackage("jquery"));
});

Parameters

Name Type Description
configure Action<BowerInfoSettings>

Return Value

Type Description
IBowerRunnerCommands