Skip to content

Commit b70d4c2

Browse files
committed
Remove d3-array and d3-scale packages (and just use the main d3 package already installed)
1 parent 211508f commit b70d4c2

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

frontend/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/package.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,6 @@
6666
"@types/echarts": "^4.9.22",
6767
"clsx": "^2.1.1",
6868
"d3": "^7.9.0",
69-
"d3-array": "^3.2.4",
70-
"d3-scale": "^4.0.2",
7169
"dotenv": "^16.4.7",
7270
"echarts": "^5.6.0",
7371
"layerchart": "^0.74.0",

frontend/src/lib/components/charts/FeaturesLineChart.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<script lang="ts">
22
import type { ComponentProps } from 'svelte';
33
import { accessor, findRelatedData, LineChart, Tooltip } from 'layerchart';
4-
import { scaleOrdinal } from 'd3-scale';
4+
import { scaleOrdinal } from 'd3';
55
66
import { colors, lineChartProps, tooltipProps } from './common';
77
import type { TimeSeriesItem } from '$lib/types/Model/Model';

0 commit comments

Comments
 (0)