0.2.2 • Published 10 years ago

plumber-concat v0.2.2

Weekly downloads
2
License
GPL
Repository
github
Last release
10 years ago

plumber-concat

Concatenation operation for Plumber pipelines.

Example

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

module.exports = function(pipelines) {

    pipelines['compile'] = [
        glob('src/**/*.js'),
        // ... more pipeline operations
    ];

};

API

glob(patterns...)

Returns resources for all files matched by the list of patterns.

Patterns may include wildcards like * or ** (globstar).

See the minimatch documentation for the full available syntax.

glob.within(directory)

Returns a new glob function scoped within the given directory.

Example:

var sources = glob.within('src');
var htmlAndCss = sources("index.html", "styles/*.css");

var scripts = sources.within('scripts');
var js = sources("**/*.js");
0.2.2

10 years ago

0.4.0

10 years ago

0.3.1

10 years ago

0.3.0

10 years ago

0.2.1

10 years ago

0.2.0

10 years ago

0.1.4

10 years ago

0.1.3

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago