chore: export module that use in main repo (#1425)

This commit is contained in:
Yongjie Zhao 2021-10-25 11:33:49 +01:00
parent f552abaa42
commit 4a8d78304d
3 changed files with 4 additions and 5 deletions

View File

@ -12,6 +12,7 @@ export { default as getChartComponentRegistry } from './registries/ChartComponen
export { default as getChartControlPanelRegistry } from './registries/ChartControlPanelRegistrySingleton';
export { default as getChartMetadataRegistry } from './registries/ChartMetadataRegistrySingleton';
export { default as getChartTransformPropsRegistry } from './registries/ChartTransformPropsRegistrySingleton';
export { BuildQuery } from './registries/ChartBuildQueryRegistrySingleton';
export { default as ChartDataProvider } from './components/ChartDataProvider';

View File

@ -6,6 +6,7 @@ export { default as CategoricalScheme } from './CategoricalScheme';
export { default as getCategoricalSchemeRegistry } from './CategoricalSchemeRegistrySingleton';
export { default as getSequentialSchemeRegistry } from './SequentialSchemeRegistrySingleton';
export { default as SequentialScheme } from './SequentialScheme';
export { default as ColorSchemeRegistry } from './ColorSchemeRegistry';
export * from './colorSchemes';
export const BRAND_COLOR = '#00A699';

View File

@ -63,13 +63,10 @@ module.exports = {
// todo: remove hard code after move storybook to superset repo.
config.resolve.alias['@emotion/styled'] = path.resolve(
rootPath,
rootPath,
'./node_modules/@emotion/styled',
);
config.resolve.alias['@emotion/core'] = path.resolve(
rootPath,
'./node_modules/@emotion/core',
);
config.resolve.alias['@emotion/core'] = path.resolve(rootPath, './node_modules/@emotion/core');
config.devtool = 'eval-cheap-module-source-map';
config.devServer = {