1.0.0 • Published 8 years ago

saito v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

Make-style declarative task dependencies

Install

npm install saito

Use

var task = require('saito')(function () {
	return {
		'%.upper': this.dep('%.lower', (str) => str.toUpperCase()),
		'hello.lower': () => 'hello'
	}
}))

task('hello.upper').apply(x => {
	console.log(x); //⇒ HELLO
});

% wildcard dependencies are filled in with concrete values using file stems.

Licence

MIT. © 2015 Matt Brennan