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

New Generation Build System


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

About | Usage | Documentation | Plugins | Contributing


New Generation Build System

About

Fly is a build system for Node based in ES6 generators and promises that aims to be simple and elegant to write and extend.

See the Documentation page to learn more.

Usage

Install

npm install fly

Flyfile

const paths = {
  scripts: ["client/js/**/*.coffee", "!client/external/**/*.coffee"]
}

exports.default = function* () {
  yield this.tasks.clear()
  yield this.tasks.scripts()
  yield this.watch(paths.scripts)
}

exports.clear = function* () {
  yield this.clear("build")
}

exports.scripts = function* () {
  yield this
    .source(paths.scripts)
    .coffee()
    .uglify()
    .concat("all.min.js")
    .target("build/js")
}

Contributing

Contributions are absolutely welcome. Check out our contribution guide.

License

MIT © Jorge Bucaran et al

Bitdeli Badge

Keywords

FAQs

Package last updated on 30 Jun 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