through2-sequence

0.0.0 • Public • Published

streams-sequence

Build Status Coverage Status

Installation

You can install through2-sequence via npm:

$ npm install --save-dev through2-sequence

Examples

Combine a stream sequence into one pipeline:

var sequence = require("through2-sequence");
 
gulp.task("javascripts", function () {
    var pipeline = sequence([
        ngmin(),
        uglify(),
        concat(),
        rev()
    ]);
    return gulp.src(["**/*.js"])
        .pipe(pipeline)
        .pipe(gulp.dest("./public/assets/js"))
});

Contributing

Contributions are most welcome! If you're having problems and don't know why, search the issues to see if someone's had the same issue. If not, file a new issue so we can solve it together and leave the solution visible to others facing the same problem as well. If you find bugs, file an issue, preferably with good reproduction steps. If you want to be totally awesome, you can make a PR to go with your issue, containing a new test case that fails currently!

Development

Development is pretty straightforward, it's all JS and the standard node stuff works:

To install dependencies:

$ npm install

To run the tests:

$ npm test

Then just make your awesome feature and a PR for it. Don't forget to file an issue first, or start with an empty PR so others can see what you're doing and discuss it so there's a a minimal amount of wasted effort.

Do note that the test coverage is currently a whopping 100%. Let's keep it that way! Remember: if it's not in the requirements specification (i.e. the tests), it's not needed, and thus unnecessary bloat.

Package Sidebar

Install

npm i through2-sequence

Weekly Downloads

0

Version

0.0.0

License

ISC

Last publish

Collaborators

  • jussi-kalliokoski