Remove redundant type refs
This commit is contained in:
parent
568cf4d182
commit
897cfb491c
@ -32,6 +32,7 @@ This repository contains all the 0x developer tools written in TypeScript. Our h
|
|||||||
| [`@0xproject/web3-wrapper`](/packages/web3-wrapper) | [](https://www.npmjs.com/package/@0xproject/web3-wrapper) | Web3 wrapper |
|
| [`@0xproject/web3-wrapper`](/packages/web3-wrapper) | [](https://www.npmjs.com/package/@0xproject/web3-wrapper) | Web3 wrapper |
|
||||||
| [`web3-typescript-typings`](/packages/web3-typescript-typings) | [](https://www.npmjs.com/package/web3-typescript-typings) | Web3 typescript typings |
|
| [`web3-typescript-typings`](/packages/web3-typescript-typings) | [](https://www.npmjs.com/package/web3-typescript-typings) | Web3 typescript typings |
|
||||||
| [`chai-as-promised-typescript-typings`](/packages/chai-as-promised-typescript-typings) | [](https://www.npmjs.com/package/chai-as-promised-typescript-typings) | Chai as promised typescript typings |
|
| [`chai-as-promised-typescript-typings`](/packages/chai-as-promised-typescript-typings) | [](https://www.npmjs.com/package/chai-as-promised-typescript-typings) | Chai as promised typescript typings |
|
||||||
|
| [`chai-typescript-typings`](/packages/chai-typescript-typings) | [](https://www.npmjs.com/package/chai-typescript-typings) | Chai typescript typings |
|
||||||
|
|
||||||
### Private Packages
|
### Private Packages
|
||||||
|
|
||||||
|
2
packages/0x.js/src/globals.d.ts
vendored
2
packages/0x.js/src/globals.d.ts
vendored
@ -1,5 +1,3 @@
|
|||||||
/// <reference types='chai-typescript-typings' />
|
|
||||||
/// <reference types='chai-as-promised-typescript-typings' />
|
|
||||||
declare module 'web3_beta';
|
declare module 'web3_beta';
|
||||||
declare module 'chai-bignumber';
|
declare module 'chai-bignumber';
|
||||||
declare module 'dirty-chai';
|
declare module 'dirty-chai';
|
||||||
|
@ -5,9 +5,10 @@
|
|||||||
|
|
||||||
declare module 'chai-as-promised' {
|
declare module 'chai-as-promised' {
|
||||||
function chaiAsPromised(chai: any, utils: any): void;
|
function chaiAsPromised(chai: any, utils: any): void;
|
||||||
export namespace chaiAsPromised {
|
namespace chaiAsPromised {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
export = chaiAsPromised;
|
||||||
}
|
}
|
||||||
|
|
||||||
// tslint:disable:no-namespace ban-types member-ordering
|
// tslint:disable:no-namespace ban-types member-ordering
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/0xProject/0x.js/issues"
|
"url": "https://github.com/0xProject/0x.js/issues"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/0xProject/0x.js/packages/chai-as-promises-typescript-typings#readme",
|
"homepage": "https://github.com/0xProject/0x.js/packages/chai-as-promised-typescript-typings#readme",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"chai-typescript-typings": "^0.0.0"
|
"chai-typescript-typings": "^0.0.0"
|
||||||
}
|
}
|
||||||
|
@ -14,7 +14,7 @@ export const errorReporter = {
|
|||||||
|
|
||||||
process.on('unhandledRejection', (err: Error) => {
|
process.on('unhandledRejection', (err: Error) => {
|
||||||
utils.consoleLog(`Uncaught exception ${err}. Stack: ${err.stack}`);
|
utils.consoleLog(`Uncaught exception ${err}. Stack: ${err.stack}`);
|
||||||
this.report(err);
|
this.reportAsync(err);
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
2
packages/subproviders/src/globals.d.ts
vendored
2
packages/subproviders/src/globals.d.ts
vendored
@ -1,5 +1,3 @@
|
|||||||
/// <reference types='chai-typescript-typings' />
|
|
||||||
/// <reference types='chai-as-promised-typescript-typings' />
|
|
||||||
declare module 'dirty-chai';
|
declare module 'dirty-chai';
|
||||||
declare module 'es6-promisify';
|
declare module 'es6-promisify';
|
||||||
|
|
||||||
|
@ -1694,10 +1694,6 @@ chai-typescript-typings@^0.0.0:
|
|||||||
version "0.0.0"
|
version "0.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/chai-typescript-typings/-/chai-typescript-typings-0.0.0.tgz#52e076d72cf29129c94ab1dba6e33ce3828a0724"
|
resolved "https://registry.yarnpkg.com/chai-typescript-typings/-/chai-typescript-typings-0.0.0.tgz#52e076d72cf29129c94ab1dba6e33ce3828a0724"
|
||||||
|
|
||||||
chai-typescript-typings@^0.0.1:
|
|
||||||
version "0.0.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/chai-typescript-typings/-/chai-typescript-typings-0.0.1.tgz#433dee303b0b2978ad0dd03129df0a5afb791274"
|
|
||||||
|
|
||||||
chai@^4.0.1:
|
chai@^4.0.1:
|
||||||
version "4.1.2"
|
version "4.1.2"
|
||||||
resolved "https://registry.yarnpkg.com/chai/-/chai-4.1.2.tgz#0f64584ba642f0f2ace2806279f4f06ca23ad73c"
|
resolved "https://registry.yarnpkg.com/chai/-/chai-4.1.2.tgz#0f64584ba642f0f2ace2806279f4f06ca23ad73c"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user