From 13299158d1e22d1af1cd36434fc403a74743ecb1 Mon Sep 17 00:00:00 2001 From: Leonid Logvinov Date: Sun, 4 Mar 2018 19:05:26 -0800 Subject: Add sol-cover implementation --- packages/deployer/src/commands.ts | 5 ----- 1 file changed, 5 deletions(-) (limited to 'packages/deployer/src/commands.ts') diff --git a/packages/deployer/src/commands.ts b/packages/deployer/src/commands.ts index d1707c5ed..32af7fc3f 100644 --- a/packages/deployer/src/commands.ts +++ b/packages/deployer/src/commands.ts @@ -1,6 +1,5 @@ import { Compiler } from './compiler'; import { Deployer } from './deployer'; -import { migrator } from './migrations/migrate'; import { CompilerOptions, DeployerOptions } from './utils/types'; export const commands = { @@ -8,10 +7,6 @@ export const commands = { const compiler = new Compiler(opts); await compiler.compileAllAsync(); }, - async migrateAsync(opts: DeployerOptions): Promise { - const deployer = new Deployer(opts); - await migrator.runMigrationsAsync(deployer); - }, async deployAsync(contractName: string, args: any[], opts: DeployerOptions): Promise { const deployer = new Deployer(opts); await deployer.deployAndSaveAsync(contractName, args); -- cgit v1.2.3