UNPKG

@busy-web/deploy

Version:

busy-web ember-cli-deploy addon.

27 lines (22 loc) 472 B
/** * @module Commands * */ var RSVP = require('rsvp'); /** * `ember busy:release` * * NOTE: * This is a non working unfinished command */ module.exports = { name: 'busy:release', description: 'Release a build with a new verion tag in git', works: 'insideProject', availableOptions: [], anonymousOptions: ['<deployTarget>'], run: function(commandOptions, rawArgs) { commandOptions.deployTarget = rawArgs.shift(); return RSVP.Promise.resolve(); } };