small fixes

This commit is contained in:
Fabio Berger 2018-03-13 16:36:05 +01:00
parent ca25b816fa
commit c3b4359e87
6 changed files with 10 additions and 7 deletions

View File

@ -2,4 +2,3 @@ export { RPC } from './rpc';
export { BlockchainLifecycle } from './blockchain_lifecycle';
export { web3Factory } from './web3_factory';
export { constants as devConstants } from './constants';
export { postpublishUtils } from './postpublish_utils';

View File

@ -1,4 +1,4 @@
import { postpublishUtils } from '../postpublish_utils';
import { postpublishUtils } from '@0xproject/monorepo-scripts';
import * as packageJSON from '../package.json';

View File

@ -2,6 +2,8 @@
"name": "@0xproject/monorepo-scripts",
"version": "0.1.12",
"description": "Helper scripts for the monorepo",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build:watch": "tsc -w",
"deps_versions": "node ./lib/deps_versions.js",
@ -19,7 +21,6 @@
},
"homepage": "https://github.com/0xProject/0x-monorepo/packages/monorepo-scripts/README.md",
"devDependencies": {
"@0xproject/tslint-config": "^0.4.10",
"@types/glob": "^5.0.33",
"@types/node": "^8.0.53",
"shx": "^0.2.2",

View File

@ -1,3 +0,0 @@
{
"extends": ["@0xproject/tslint-config"]
}

View File

@ -0,0 +1,6 @@
declare module '*.json' {
const json: any;
/* tslint:disable */
export default json;
/* tslint:enable */
}

View File

@ -8,5 +8,5 @@
"*": ["node_modules/@types/*", "*"]
}
},
"include": ["./src/ts/**/*"]
"include": ["./src/**/*"]
}