Skip to content

vrosnet/fly

 
 

Repository files navigation

New Generation Build System

npm package

About | Usage | Documentation | Plugins | Contributing


About

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.

Usage

Install

npm install fly

Flyfile

Flyfiles can be written in ES5/6/7 and other variants.

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")
}

Contributing

Contributions are absolutely welcome. Check out our contribution guide.

Roadmap 🚊

  • Proper testing.
  • Optimize stream operations via CSP channels.

License

MIT © Jorge Bucaran et al ❤️

About

🍬 New Generation Build System

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 99.1%
  • Shell 0.9%