0.0.16 • Published 5 years ago

llbuild v0.0.16

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

llbuild Build Status

Low level build tool for Node.js

Usage

const LLBuild = require('llbuild');

const targets = {
    'default': ['babel', 'less'],
    'babel': function() {
        // invoke babel
    },
    'less': function() {
        // invoke less
    }
};

new LLBuild(targets).executeTarget('default').then(
    function() {
        console.log('Build complete.');
    },
    function(err) {
        console.error(err);
    }
);
0.0.16

5 years ago

0.0.15

7 years ago

0.0.14

8 years ago

0.0.13

9 years ago

0.0.12

9 years ago

0.0.11

9 years ago

0.0.10

9 years ago

0.0.9

9 years ago

0.0.8

9 years ago

0.0.7

9 years ago

0.0.6

9 years ago

0.0.5

9 years ago

0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago