Skip to content

Latest commit

 

History

History
44 lines (38 loc) · 1.84 KB

README.md

File metadata and controls

44 lines (38 loc) · 1.84 KB

(DEPRECATED!) generator-appmobi

This repository is not being maintained anymore, as of March 2017.

NPM version Coverage Status Build Status Dependency Status Download Month

Generator for Appmobi integration into Yeoman generators, especially Generator-M-Ionic.

Guides you through the installation of the Appmobi Cordova plugin in a user-friendly fashion.

Use

Generator-M-Ionic

See how to integrate Appmobi into Generator-M-Ionic!

Standalone

Can be run in any Cordova project:

npm install --global generator-appmobi
yo appmobi

Integrate

into your own Yeoman generator using Yeoman's awesome Composability feature.

package.json

"dependencies": {
  // ...
  "generator-appmobi": "^0.0.4",
  // ...
},

index.js

this.composeWith('generator-appmobi', {}, {
  local: require.resolve('generator-appmobi/generators/app/index.js')
});