mavensmate
Version:
Core APIs that drive MavensMate IDEs for Salesforce1/Force.com
62 lines (56 loc) • 1.63 kB
JavaScript
/**
* @file Compiles metadata
* @author Joseph Ferraro <@joeferraro>
*/
;
var Promise = require('bluebird');
var util = require('../../util');
var inherits = require('inherits');
var BaseCommand = require('../../command');
var CompileDelegate = require('../../services/compile');
function Command() {
Command.super_.call(this, Array.prototype.slice.call(arguments, 0));
}
inherits(Command, BaseCommand);
Command.prototype.execute = function() {
var self = this;
return new Promise(function(resolve, reject) {
var project = self.getProject();
var compileDelegate = new CompileDelegate(project, self.payload.paths, self.payload.force);
compileDelegate.execute()
.then(function(result) {
resolve(result);
})
.catch(function(error) {
reject(error);
})
.done();
});
};
exports.command = Command;
exports.addSubCommand = function(program) {
program
.command('compile-metadata [path]')
.alias('compile')
.description('Compiles metadata')
.action(function(path){
if (path) {
program.commandExecutor.execute({
name: this._name,
body: {
paths : util.getAbsolutePaths( [ path ] )
}
});
} else {
var self = this;
util.getPayload()
.then(function(payload) {
program.commandExecutor.execute({
name: self._name,
body: payload,
editor: self.parent.editor
});
});
}
});
};