cleanup empty lines after function

This commit is contained in:
Todd Baur 2017-03-11 00:13:59 +09:00
parent dc9084b8a6
commit b590312e20
1 changed files with 0 additions and 7 deletions

View File

@ -27,7 +27,6 @@ Cmd.prototype.process = function(args) {
}; };
Cmd.prototype.newApp = function() { Cmd.prototype.newApp = function() {
program program
.command('new [name]') .command('new [name]')
.description('new application') .description('new application')
@ -44,7 +43,6 @@ Cmd.prototype.newApp = function() {
}; };
Cmd.prototype.demo = function() { Cmd.prototype.demo = function() {
program program
.command('demo') .command('demo')
.description('create a working dapp with a SimpleStorage contract') .description('create a working dapp with a SimpleStorage contract')
@ -54,7 +52,6 @@ Cmd.prototype.demo = function() {
}; };
Cmd.prototype.build = function() { Cmd.prototype.build = function() {
program program
.command('build [environment]') .command('build [environment]')
.description('deploy and build dapp at dist/ (default: development)') .description('deploy and build dapp at dist/ (default: development)')
@ -64,7 +61,6 @@ Cmd.prototype.build = function() {
}; };
Cmd.prototype.run = function() { Cmd.prototype.run = function() {
program program
.command('run [environment]') .command('run [environment]')
.option('-p, --port [port]', 'port to run the dev webserver (default: 8000)') .option('-p, --port [port]', 'port to run the dev webserver (default: 8000)')
@ -85,7 +81,6 @@ Cmd.prototype.run = function() {
}; };
Cmd.prototype.blockchain = function() { Cmd.prototype.blockchain = function() {
program program
.command('blockchain [environment]') .command('blockchain [environment]')
.option('-c, --client [client]', 'Use a specific ethereum client or simulator (supported: geth, parity, ethersim, testrpc') .option('-c, --client [client]', 'Use a specific ethereum client or simulator (supported: geth, parity, ethersim, testrpc')
@ -100,7 +95,6 @@ Cmd.prototype.blockchain = function() {
}; };
Cmd.prototype.simulator = function() { Cmd.prototype.simulator = function() {
program program
.command('simulator [environment]') .command('simulator [environment]')
.description('run a fast ethereum rpc simulator') .description('run a fast ethereum rpc simulator')
@ -126,7 +120,6 @@ Cmd.prototype.test = function() {
}; };
Cmd.prototype.upload = function() { Cmd.prototype.upload = function() {
program program
.command('upload [platform] [environment]') .command('upload [platform] [environment]')
.description('upload your dapp to a decentralized storage. possible options: ipfs, swarm (e.g embark upload swarm)') .description('upload your dapp to a decentralized storage. possible options: ipfs, swarm (e.g embark upload swarm)')