Skip to content

Commit 33ed7a5

Browse files
committed
update to 0.0.8
1 parent 11c7efb commit 33ed7a5

File tree

3 files changed

+2
-9
lines changed

3 files changed

+2
-9
lines changed

.github/workflows/publish.yml

-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ jobs:
1616
with:
1717
path: ~/.npm
1818
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
19-
restore-keys: |
20-
${{ runner.os }}-node-
2119
- run: npm install
2220
# TODO: enable test as soon as they are implemented
2321
# - run: npm test

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "arduino-serial-plotter-webapp",
3-
"version": "0.0.7",
3+
"version": "0.0.8",
44
"dependencies": {},
55
"scripts": {
66
"start": "react-scripts start",

src/ChartPlotter.tsx

+1-6
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,7 @@ import React, { useState, useRef, useImperativeHandle, useEffect } from "react";
22

33
import { Line } from "react-chartjs-2";
44

5-
import {
6-
addDataPoints,
7-
resetDatapointCounter,
8-
resetExistingDatasetsMap,
9-
SerialPlotter,
10-
} from "./utils";
5+
import { addDataPoints, SerialPlotter } from "./utils";
116
import { Legend } from "./Legend";
127
import { Chart, ChartData, ChartOptions } from "chart.js";
138
import "chartjs-adapter-luxon";

0 commit comments

Comments
 (0)