1.1.3 • Published 8 years ago

smartface-plugin-validator v1.1.3

Weekly downloads
74
License
ISC
Repository
-
Last release
8 years ago

Smartface Plugin Validator

This module validates your smartface plugins.

Installation

npm install --save smartface-plugin-validator

Usage & Example

 const smartfacePluginValidator = require("smartface-plugin-validator");


smartfacePluginValidator("./icloudios.zip","ios").then(function(res){
    if(res.error){// is validated ?
        console.log("\t - " + res.allErrors.join("\n\t - "));
    }else{
        // this plugin.zip is valid.
    }
},function(err){
    console.error(err);
});
    

Test

You can run npm test for testing

  smartfacePluginValidator, this module validates your smartface plugins 
     iOS Plugins
      ✓ should return object that has error as false.
     Android Plugins
      ✓ should return object that has error as false.


  2 passing (63ms)
1.1.3

8 years ago

1.1.2

8 years ago

1.1.1

8 years ago

1.1.0

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago