Skip to content

yang-wei/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.

Fly has callback heaven, concurrent tasks, robust error handling, cascading tasks and a simple API.

See the documentation to learn more about Fly.

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.watch(paths.scripts, "build")
}

export function* build () {
  yield this.clear("dist")
  yield this
    .source(paths.scripts)
    .babel({ stage: 0 })
    .uglify()
    .concat("all.min.js")
    .target("dist")
}

Contributing

Contributions are absolutely welcome. Check out our contribution guide.

License

MIT © Jorge Bucaran et al ❤️

About

🐝 New Generation Build System

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 98.6%
  • Other 1.4%