Skip to content

treeshaking not working as expected #433

Open
@mchl18

Description

@mchl18

hi guys,

I wanted to use the instructions to use tree shaking and then did an analysis of the bundle.

See for yourself

image

thats a total of 6mb for rendering three different kinds of charts. don't think that's the way it was intended. echarts show up twice, once in the vendor module where it seems like everything gets pulled in and once outside of it.

here is. my config (./config/echarts-config.ts)

import {
  TitleComponent,
  TooltipComponent,
  GridComponent,
  DatasetComponent,
  TransformComponent,
  LegendComponent,
} from 'echarts/components';
import { BarChart, LineChart, PieChart } from 'echarts/charts';
import { LabelLayout, UniversalTransition } from 'echarts/features';
import { CanvasRenderer } from 'echarts/renderers';
import 'echarts/theme/macarons.js';
import * as echarts from 'echarts/core';

// Register the required components
echarts.use([
  BarChart,
  LineChart,
  TitleComponent,
  TooltipComponent,
  GridComponent,
  DatasetComponent,
  TransformComponent,
  LabelLayout,
  UniversalTransition,
  CanvasRenderer,
  LegendComponent,
  PieChart,
]);

export { echarts };

then in my app.module.ts

import { echarts } from './config/echarts-config';
import { NgxEchartsDirective, provideEchartsCore } from 'ngx-echarts';
....
 imports: [
    NgxEchartsDirective
 ],
 providers: [
    provideEchartsCore({ echarts })
 ],

please let me know if you can reproduce this.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions