0.3.4 • Published 10 years ago

fly-notify v0.3.4

Weekly downloads
3
License
MIT
Repository
github
Last release
10 years ago

node-notifier plugin for Fly.

npm package

Usage

Check out the documentation to see the available options.

This plugin also allows you to specify a devicons icon by prefixing the icon that you want to use with dev:. octicons support planned as well.

Install

npm install -D fly-notify

Example

ES6

export default function* () {
  yield this.clear("build")
  yield this
    .source(paths.scripts)
    .babel({ stage: 0 })
    .uglify()
    .concat("all.min.js")
    .notify({
      title: "Fly Default",
      message: "Completed default task",
      icon: "dev:code_badge"
    })
    .target("build/js")
}

Earl Grey

provide: default
default = *->
  yield this.clear("build")
  yield chain this:
    @source("src/*.eg")
    @earl()
    @concat("index.js")
    @notify with {
      title = "Fly Default"
      message = "Completeled default task."
      icon = "dev:code_badge"
    }
    @target("lib")

Requirements

Here are node-notifier's requirements:

  • Mac OS X: >= 10.8 or Growl if earlier.
  • Linux: notify-osd installed (Ubuntu should have this by default)
  • Windows: >= 8, task bar balloon if earlier or Growl if that is installed.
  • General Fallback: Growl

License

MIT © Jake Russo et al

0.3.4

10 years ago

0.3.3

10 years ago

0.3.1

10 years ago

0.2.0

10 years ago

0.1.3

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago