aboutsummaryrefslogtreecommitdiffstats
path: root/packages/deployer/src/commands.ts
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2018-03-16 22:09:11 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2018-03-21 22:11:41 +0800
commit18b9fe525622d9e18491f76136d7697806996a09 (patch)
tree5bed8ae3fecf81a414d83dba67f7437b28d40bbe /packages/deployer/src/commands.ts
parent439e8640859cf790bac51c1beeec4cf65aa33c57 (diff)
downloaddexon-0x-contracts-18b9fe525622d9e18491f76136d7697806996a09.tar
dexon-0x-contracts-18b9fe525622d9e18491f76136d7697806996a09.tar.gz
dexon-0x-contracts-18b9fe525622d9e18491f76136d7697806996a09.tar.bz2
dexon-0x-contracts-18b9fe525622d9e18491f76136d7697806996a09.tar.lz
dexon-0x-contracts-18b9fe525622d9e18491f76136d7697806996a09.tar.xz
dexon-0x-contracts-18b9fe525622d9e18491f76136d7697806996a09.tar.zst
dexon-0x-contracts-18b9fe525622d9e18491f76136d7697806996a09.zip
Enable strictNullChecks
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);