remove no longer used plugin cmd api

This commit is contained in:
Iuri Matias 2018-07-07 18:11:58 +03:00 committed by Pascal Precht
parent 0f18c5caf1
commit fdfa474588
No known key found for this signature in database
GPG Key ID: 0EE28D8D6FD85D7D
1 changed files with 0 additions and 6 deletions

View File

@ -22,7 +22,6 @@ var Plugin = function(options) {
this.serviceChecks = [];
this.dappGenerators = [];
this.pluginTypes = [];
this.uploadCmds = [];
this.imports = [];
this.embarkjs_code = [];
this.embarkjs_init_code = {};
@ -188,11 +187,6 @@ Plugin.prototype.registerCompiler = function(extension, cb) {
this.addPluginType('compilers');
};
Plugin.prototype.registerUploadCommand = function(cmd, cb) {
this.uploadCmds.push({cmd: cmd, cb: cb});
this.addPluginType('uploadCmds');
};
Plugin.prototype.addCodeToEmbarkJS = function(code) {
this.embarkjs_code.push(code);
this.addPluginType('embarkjsCode');