chore: change package org from 0xproject to 0x

This commit is contained in:
Jacob Evans
2018-10-18 21:51:56 +11:00
parent 9e8bca69a8
commit 9f924e459c
344 changed files with 986 additions and 978 deletions

View File

@@ -1,5 +1,5 @@
import { assetDataUtils } from '@0xproject/order-utils';
import { ObjectMap } from '@0xproject/types';
import { assetDataUtils } from '@0x/order-utils';
import { ObjectMap } from '@0x/types';
import * as _ from 'lodash';
import { PortalOrder } from 'ts/types';
import { utils } from 'ts/utils/utils';

View File

@@ -1,5 +1,5 @@
import { ALink } from '@0xproject/react-shared';
import { BigNumber } from '@0xproject/utils';
import { ALink } from '@0x/react-shared';
import { BigNumber } from '@0x/utils';
import { Key, WebsitePaths } from 'ts/types';
const URL_FORUM = 'https://forum.0xproject.com';

View File

@@ -1,5 +1,5 @@
import { DocAgnosticFormat, GeneratedDocJson } from '@0xproject/react-docs';
import { fetchAsync, logUtils } from '@0xproject/utils';
import { DocAgnosticFormat, GeneratedDocJson } from '@0x/react-docs';
import { fetchAsync, logUtils } from '@0x/utils';
import * as _ from 'lodash';
import { S3FileObject, VersionToFilePath } from 'ts/types';
import convert = require('xml-js');

View File

@@ -1,4 +1,4 @@
import { logUtils } from '@0xproject/utils';
import { logUtils } from '@0x/utils';
import Rollbar = require('rollbar');
import { configs } from 'ts/utils/configs';
import { constants } from 'ts/utils/constants';

View File

@@ -1,4 +1,4 @@
import { fetchAsync, logUtils } from '@0xproject/utils';
import { fetchAsync, logUtils } from '@0x/utils';
import * as _ from 'lodash';
import * as queryString from 'query-string';

View File

@@ -1,4 +1,4 @@
import { colors } from '@0xproject/react-shared';
import { colors } from '@0x/react-shared';
import { getMuiTheme } from 'material-ui/styles';
export const muiTheme = getMuiTheme({

View File

@@ -1,5 +1,5 @@
import { orderParsingUtils } from '@0xproject/order-utils';
import { logUtils } from '@0xproject/utils';
import { orderParsingUtils } from '@0x/order-utils';
import { logUtils } from '@0x/utils';
import * as _ from 'lodash';
import { portalOrderSchema } from 'ts/schemas/portal_order_schema';

View File

@@ -1,4 +1,4 @@
import { ObjectMap } from '@0xproject/types';
import { ObjectMap } from '@0x/types';
import { constants } from 'ts/utils/constants';
// Map of networkId -> tokenSymbol -> tokenAddress

View File

@@ -1,9 +1,9 @@
import { ContractWrappersError } from '@0xproject/contract-wrappers';
import { assetDataUtils, OrderError } from '@0xproject/order-utils';
import { constants as sharedConstants, Networks } from '@0xproject/react-shared';
import { ExchangeContractErrs } from '@0xproject/types';
import { BigNumber } from '@0xproject/utils';
import { Web3Wrapper } from '@0xproject/web3-wrapper';
import { ContractWrappersError } from '@0x/contract-wrappers';
import { assetDataUtils, OrderError } from '@0x/order-utils';
import { constants as sharedConstants, Networks } from '@0x/react-shared';
import { ExchangeContractErrs } from '@0x/types';
import { BigNumber } from '@0x/utils';
import { Web3Wrapper } from '@0x/web3-wrapper';
import * as bowser from 'bowser';
import deepEqual = require('deep-equal');
import * as _ from 'lodash';