Skip to content

Latest commit

 

History

History
128 lines (80 loc) · 2.89 KB

README.md

File metadata and controls

128 lines (80 loc) · 2.89 KB

Title Banner

Build Status npm Version JS Standard

CLI for pon

Installation

$ npm install pon-cli -g

Usage

Create Ponfile.js at your project root and define tasks there.

'use strict'

const pon = require('pon')

module.exports = pon({
  'myapp:do': async function doSomething () {
    /* ... */
  }
})

Then, call task from command line

pon myapp:do

License

This software is released under the Apache-2.0 License.

Links