Move configuration into package.json configs section

This commit is contained in:
Fabio Berger
2018-03-14 14:07:24 +01:00
parent dba1b8a7e9
commit f7c1e10b5a
26 changed files with 185 additions and 162 deletions

View File

@@ -1,7 +1,8 @@
import { postpublishUtils } from '@0xproject/monorepo-scripts';
import * as packageJSON from '../package.json';
import * as tsConfigJSON from '../tsconfig.json';
const subPackageName = (packageJSON as any).name;
const cwd = `${__dirname}/..`;
// tslint:disable-next-line:no-floating-promises
postpublishUtils.standardPostPublishAsync(subPackageName);
postpublishUtils.runAsync(packageJSON, tsConfigJSON, cwd);