0.0.16 • Published 4 years ago

llbuild v0.0.16

Weekly downloads
2
License
MIT
Repository
github
Last release
4 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

4 years ago

0.0.15

6 years ago

0.0.14

7 years ago

0.0.13

7 years ago

0.0.12

7 years ago

0.0.11

8 years ago

0.0.10

8 years ago

0.0.9

8 years ago

0.0.8

8 years ago

0.0.7

8 years ago

0.0.6

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago