# makelet

> A embeddable make library

Latest version **0.1.2** (published 2014-11-28) · 0 weekly downloads

## Install

```sh
npm install makelet
pnpm add makelet
yarn add makelet
bun add makelet
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.2 |
| Published | 2014-11-28 |
| First published | 2014-11-08 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >= 0.8.4 |
| Dependencies | 4 |
| Known vulnerabilities | 0 (+1 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 0 |
| Author | YC |
| Maintainers | yc |

## Links

- npm: https://www.npmjs.com/package/makelet
- Repository: git@github.com:yinso/makelet
- Homepage: https://github.com/yinso/makelet
- Issues: https://github.com/yinso/makelet/issues
- npm.io page: https://npm.io/package/makelet

## Dependencies (4)

- [async](https://npm.io/package/async.md) =0.9.0
- [loglet](https://npm.io/package/loglet.md) >=0.1.1
- [utilities](https://npm.io/package/utilities.md) =1.0.4
- [coffee-script](https://npm.io/package/coffee-script.md) =1.7.1

## Recent versions

- 0.1.2 (latest) — 2014-11-28
- 0.1.1 — 2014-11-08
- 0.1.0 — 2014-11-08

## README

# Makelet - an embeddable make library

`Makelet` is an embeddable make library - that means you can use it to create your own make-like utility. 

## Install 

    npm install makelet

## Usage 

    var Makelet = require('makelet');
    var runner = new Makelet()
    // regular tasks... 
    runner.task('test1', function(done) {
      ...
      done(null);
    });
    // task dependencies
    runner.task('test2', ['test1'], function(done) {
      ...
      done(null)
    });
    // file-based tasks... will only run if the depended files are newer. 
    runner.file('src/test.c', ['include/test.h'], function(done) {
      ... 
      done(null);
    })

---
_Source: https://npm.io/package/makelet · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
