diff options
author | Brandon Millman <brandon@0xproject.com> | 2018-03-15 06:30:59 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-15 06:30:59 +0800 |
commit | 4a27a7dc581fc6c8a3d4e212ca3712c249a5b417 (patch) | |
tree | 344bd9cb3391a7a0cfb726cc7a54f4694eabd974 /packages/react-docs | |
parent | aea7207b9f9865a279243889a5f9ca1638ddc739 (diff) | |
parent | 3b3d5b12bc78b13860504b9699fd5f15ae8813a1 (diff) | |
download | dexon-0x-contracts-4a27a7dc581fc6c8a3d4e212ca3712c249a5b417.tar.gz dexon-0x-contracts-4a27a7dc581fc6c8a3d4e212ca3712c249a5b417.tar.zst dexon-0x-contracts-4a27a7dc581fc6c8a3d4e212ca3712c249a5b417.zip |
Merge pull request #452 from 0xProject/feature/utils/console-log
Consolidate all console.log utils into @0xproject/utils
Diffstat (limited to 'packages/react-docs')
-rw-r--r-- | packages/react-docs/CHANGELOG.md | 3 | ||||
-rw-r--r-- | packages/react-docs/package.json | 1 | ||||
-rw-r--r-- | packages/react-docs/src/components/custom_enum.tsx | 3 | ||||
-rw-r--r-- | packages/react-docs/src/utils/utils.ts | 5 |
4 files changed, 5 insertions, 7 deletions
diff --git a/packages/react-docs/CHANGELOG.md b/packages/react-docs/CHANGELOG.md index bd459cc77..a90cf19f0 100644 --- a/packages/react-docs/CHANGELOG.md +++ b/packages/react-docs/CHANGELOG.md @@ -1,5 +1,6 @@ # CHANGELOG -## v0.0.2 - _TBD_ +## v0.0.2 - _TBD, 2018_ * Move example out into a separate sub-package + * Consolidate all `console.log` calls into `logUtils` in the `@0xproject/utils` package (#452) diff --git a/packages/react-docs/package.json b/packages/react-docs/package.json index a3e6b55d8..991af9a37 100644 --- a/packages/react-docs/package.json +++ b/packages/react-docs/package.json @@ -38,6 +38,7 @@ }, "dependencies": { "@0xproject/react-shared": "^0.0.1", + "@0xproject/utils": "^0.4.1", "basscss": "^8.0.3", "compare-versions": "^3.0.1", "lodash": "^4.17.4", diff --git a/packages/react-docs/src/components/custom_enum.tsx b/packages/react-docs/src/components/custom_enum.tsx index deb33ff1d..1fe55eedc 100644 --- a/packages/react-docs/src/components/custom_enum.tsx +++ b/packages/react-docs/src/components/custom_enum.tsx @@ -1,3 +1,4 @@ +import { logUtils } from '@0xproject/utils'; import * as _ from 'lodash'; import * as React from 'react'; @@ -16,7 +17,7 @@ export interface CustomEnumProps { export function CustomEnum(props: CustomEnumProps) { const type = props.type; if (!_.startsWith(type.defaultValue, STRING_ENUM_CODE_PREFIX)) { - utils.consoleLog('We do not yet support `Variable` types that are not strEnums'); + logUtils.log('We do not yet support `Variable` types that are not strEnums'); return null; } // Remove the prefix and postfix, leaving only the strEnum values without quotes. diff --git a/packages/react-docs/src/utils/utils.ts b/packages/react-docs/src/utils/utils.ts index 8e1a80a44..f8c1fefff 100644 --- a/packages/react-docs/src/utils/utils.ts +++ b/packages/react-docs/src/utils/utils.ts @@ -1,9 +1,4 @@ export const utils = { - consoleLog(message: string) { - /* tslint:disable */ - console.log(message); - /* tslint:enable */ - }, spawnSwitchErr(name: string, value: any) { return new Error(`Unexpected switch value: ${value} encountered for ${name}`); }, |