Skip to content
Scaffold generator for pon
Branch: master
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
assets
bin
ci
doc
example
lib
test
.LICENSE.bud
.README.md.bud
.gitignore
.npmignore
.travis.yml
LICENSE
README.md
package-lock.json
package.json
signature.json

README.md

Title Banner

Build Status npm Version JS Standard

Scaffold generator for pon

Installation

$ npm install pon-scaffold -g

Usage

#!/usr/bin/env node

'use strict'

const ponScaffold = require('pon-scaffold')

// Generate module project
ponScaffold(
  'task', // Type
  'my-projects/my-custom-task', // Destination directory
  {
    force: false
  }
)
  .then(() => console.log('done!'))
  .catch((err) => console.error(err))

CLI Usage

Install as a global module

$ npm install pon-scaffold -g

Then,

# Generate task project
pon-scaffold task "my-projects/my-custom-task"

Types

Available template types

License

This software is released under the Apache-2.0 License.

Links

You can’t perform that action at this time.