Fix expiration watcher comparator

This commit is contained in:
Leonid Logvinov
2018-04-16 16:21:02 +02:00
parent 3ba78553f0
commit 2574405699
7 changed files with 72 additions and 12 deletions

View File

@@ -0,0 +1,10 @@
// HACK: This dependency is optional since it is only available when run from within
// the monorepo. tslint doesn't handle optional dependencies
// tslint:disable-next-line:no-implicit-dependencies
import { runMigrationsAsync } from '@0xproject/migrations';
import { deployer } from './utils/deployer';
before('migrate contracts', async () => {
await runMigrationsAsync(deployer);
});