aboutsummaryrefslogtreecommitdiffstats
path: root/packages/deployer/src/commands.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/deployer/src/commands.ts')
-rw-r--r--packages/deployer/src/commands.ts5
1 files changed, 0 insertions, 5 deletions
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<void> {
- const deployer = new Deployer(opts);
- await migrator.runMigrationsAsync(deployer);
- },
async deployAsync(contractName: string, args: any[], opts: DeployerOptions): Promise<void> {
const deployer = new Deployer(opts);
await deployer.deployAndSaveAsync(contractName, args);