Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 530 Bytes

readme.md

File metadata and controls

27 lines (20 loc) · 530 Bytes

Build Fu

A small library providing helpers for building projects from code based tools like gulp.

Installation

npm install build-fu --save-dev

Example

    var bf = new BuildFu();
    return bf.del('./out')
        .fork()
        .compile('./src', './out')
        .compile('./test/src', './test/out')
        .join()
        .copy('./src', './out', { extensions: ['js', 'json']});
        .then(function() { 
            console.log('Finished compiling');
        });

Tests

npm test