Latest Threat Research:Malicious dYdX Packages Published to npm and PyPI After Maintainer Compromise.Details
Socket
Book a DemoInstallSign in
Socket

fly-notify

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fly-notify

Fly native OS notifications.

Source
npmnpm
Version
0.1.0
Version published
Weekly downloads
4
Maintainers
1
Weekly downloads
 
Created
Source

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: and then the plugin will build a path to the icon's svg file. I plan on adding octicons 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")

License

MIT © Jake Russo et al

Keywords

fly

FAQs

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