blob: d5062a3a1187f8b0555b9c38095b9f8c5f4c0307 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
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);
});
|