mirror of https://github.com/embarklabs/embark.git
remove useless registerProcess function
This commit is contained in:
parent
640ec0b761
commit
ebf18f47a8
|
@ -24,7 +24,6 @@ var Plugin = function(options) {
|
|||
this.pluginTypes = [];
|
||||
this.uploadCmds = [];
|
||||
this.apiCalls = [];
|
||||
this.processes = [];
|
||||
this.imports = [];
|
||||
this.embarkjs_code = [];
|
||||
this.embarkjs_init_code = {};
|
||||
|
@ -232,11 +231,6 @@ Plugin.prototype.registerAPICall = function(method, endpoint, cb) {
|
|||
this.addPluginType('apiCalls');
|
||||
};
|
||||
|
||||
Plugin.prototype.registerProcess = function(processName) {
|
||||
this.processes.push({processName});
|
||||
this.addPluginType('processes');
|
||||
};
|
||||
|
||||
Plugin.prototype.runFilePipeline = function() {
|
||||
var self = this;
|
||||
|
||||
|
|
Loading…
Reference in New Issue