Socket
Socket
Sign inDemoInstall

fly

Package Overview
Dependencies
Maintainers
1
Versions
169
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fly

Fly Build System


Version published
Weekly downloads
456
decreased by-13.31%
Maintainers
1
Weekly downloads
 
Created
Source

New Generation Build System

About | Usage | Documentation | Plugins | Contributing


About

Fly is a build system for Node based in co-routines, generators and promises that aims to be simple and elegant to write.

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 or 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 tests.
  • Configuration options.
  • Optimize stream operations using CSP channels.

License

MIT © Jorge Bucaran et al

Keywords

FAQs

Package last updated on 05 Jul 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc