aboutsummaryrefslogtreecommitdiffstats
path: root/packages/deployer/src/commands.ts
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2018-03-27 23:43:50 +0800
committerGitHub <noreply@github.com>2018-03-27 23:43:50 +0800
commit26e9696ddb004759a4a7c5f4a8901dc3255a70f9 (patch)
tree05eba54c557a472dfc1eb5982b8899a5eb30c3b2 /packages/deployer/src/commands.ts
parent3b45d4727b14d2ad15784a18f4a47cf0deb40f27 (diff)
parentf30353087f9c4ec4fa5e096a065c9749e1164984 (diff)
downloaddexon-sol-tools-26e9696ddb004759a4a7c5f4a8901dc3255a70f9.tar
dexon-sol-tools-26e9696ddb004759a4a7c5f4a8901dc3255a70f9.tar.gz
dexon-sol-tools-26e9696ddb004759a4a7c5f4a8901dc3255a70f9.tar.bz2
dexon-sol-tools-26e9696ddb004759a4a7c5f4a8901dc3255a70f9.tar.lz
dexon-sol-tools-26e9696ddb004759a4a7c5f4a8901dc3255a70f9.tar.xz
dexon-sol-tools-26e9696ddb004759a4a7c5f4a8901dc3255a70f9.tar.zst
dexon-sol-tools-26e9696ddb004759a4a7c5f4a8901dc3255a70f9.zip
Merge pull request #460 from 0xProject/feature/deployer-improvements
@0xproject/deployer improvements
Diffstat (limited to 'packages/deployer/src/commands.ts')
-rw-r--r--packages/deployer/src/commands.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/deployer/src/commands.ts b/packages/deployer/src/commands.ts
index 32af7fc3f..8e544a60b 100644
--- a/packages/deployer/src/commands.ts
+++ b/packages/deployer/src/commands.ts
@@ -5,7 +5,7 @@ import { CompilerOptions, DeployerOptions } from './utils/types';
export const commands = {
async compileAsync(opts: CompilerOptions): Promise<void> {
const compiler = new Compiler(opts);
- await compiler.compileAllAsync();
+ await compiler.compileAsync();
},
async deployAsync(contractName: string, args: any[], opts: DeployerOptions): Promise<void> {
const deployer = new Deployer(opts);