build-fu

0.1.7 • Public • Published

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

Package Sidebar

Install

npm i build-fu

Weekly Downloads

0

Version

0.1.7

License

MIT

Last publish

Collaborators

  • bdmackie