Skip to content

plumberjs/plumber-bower

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 

Repository files navigation

plumber-bower Build Status

Bower sourcing operation for Plumber pipelines.

Example

var bower = require('plumber-bower');

module.exports = function(pipelines) {

    pipelines['compile'] = [
        all(
            bower('jquery'),
            bower('moment', 'min/moment.min.js')
        ),
        // ... more pipeline operations
    ];

};

API

bower(componentName, [paths])

Returns resources from the locally installed Bower component componentName. If paths if provided, they will be globbed from within the component's Bower directory; otherwise the files register as main files in the component will be returned.

The paths array may include wildcards like * or ** (globstar).

See the minimatch documentation for the full available syntax.

bower.from(directory)

Returns a new bower function rooted in the given directory, where the bower.json (and optionally .bowerrc) should be located. By default, the current working directory is used.

About

Operation to source files from Bower components for Plumber pipelines

Resources

Stars

Watchers

Forks

Packages

No packages published