chore(): add platforms tag

This commit is contained in:
Ibby Hadeed 2017-03-28 08:25:07 -04:00
parent 5aa484c024
commit 689f0f159c
2 changed files with 4 additions and 2 deletions

View File

@ -21,7 +21,8 @@ import { Injectable } from '@angular/core';
pluginName: '$PluginName', pluginName: '$PluginName',
plugin: '', plugin: '',
pluginRef: '', pluginRef: '',
repo: '' repo: '',
platforms: []
}) })
@Injectable() @Injectable()
export class $PluginName { export class $PluginName {

View File

@ -40,7 +40,8 @@ import { Observable } from 'rxjs/Observable';
plugin: '', // npm package name, example: cordova-plugin-camera plugin: '', // npm package name, example: cordova-plugin-camera
pluginRef: '', // the variable reference to call the plugin, example: navigator.geolocation pluginRef: '', // the variable reference to call the plugin, example: navigator.geolocation
repo: '', // the github repository URL for the plugin repo: '', // the github repository URL for the plugin
install: '' // OPTIONAL install command, in case the plugin requires variables platforms: [], // Array of platforms supported, example: ['Android', 'iOS']
install: '', // OPTIONAL install command, in case the plugin requires variables
}) })
@Injectable() @Injectable()
export class $PluginName { export class $PluginName {