remove no longer used plugin cmd api
This commit is contained in:
parent
0f18c5caf1
commit
fdfa474588
|
@ -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');
|
||||
|
|
Loading…
Reference in New Issue