New Generation Build System
About | Usage | Documentation | Plugins | Contributing
Fly is a modern build system for Node based in co-routines, generators and promises that aims to be simple and elegant to write.
Fly features robust error handling, callback heaven, cascading tasks and a simple, yet flexible API.
Read our rationale here.
See the documentation to learn more about how to use Fly and write your own plugins.
npm install fly
const paths = {
scripts: ["src/**/*.js", "!src/ignore/**/*.js"]
}
export default function* () {
yield this.clear("build")
this.watch([paths.scripts], ["scripts"])
}
export function* scripts () {
yield this
.source(paths.scripts)
.babel({ stage: 0 })
.uglify()
.concat("all.min.js")
.target("build/js")
}
Contributions are absolutely welcome. Check out our contribution guide.
- Proper testing.
- Optimize stream operations via CSP channels.
MIT © Jorge Bucaran et al ❤️