plumber-bower

Operation to source files from Bower components for Plumber pipelines


Keywords
build, assets, pipeline, plumber
License
GPL-2.0+
Install
npm install plumber-bower@0.4.3

Documentation

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.