1 | import { postpublishUtils } from '@0xproject/monorepo-scripts';
|
2 |
|
3 | import * as packageJSON from '../package.json';
|
4 | import * as tsConfigJSON from '../tsconfig.json';
|
5 |
|
6 | const cwd = `${__dirname}/..`;
|
7 | // tslint:disable-next-line:no-floating-promises
|
8 | postpublishUtils.runAsync(packageJSON, tsConfigJSON, cwd);
|