Skip to content

chore(deps): update commitlint monorepo to v19 (major) #1264

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -62,9 +62,9 @@
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@commitlint/cz-commitlint": "^17.0.0",
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@commitlint/cz-commitlint": "^19.0.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@size-limit/preset-big-lib": "^11.1.6",
"@storybook/addon-actions": "^8.4.7",
635 changes: 206 additions & 429 deletions pnpm-lock.yaml

Unchanged files with check annotations Beta

if (!redraw && chartRef.current && data.datasets) {
setDatasets(chartRef.current.config.data, data.datasets, datasetIdKey);
}
}, [redraw, data.datasets]);

Check warning on line 76 in src/chart.tsx

GitHub Actions / Tests

React Hook useEffect has a missing dependency: 'datasetIdKey'. Either include it or remove the dependency array
useEffect(() => {
if (!chartRef.current) return;
} else {
chartRef.current.update(updateMode);
}
}, [redraw, options, data.labels, data.datasets, updateMode]);

Check warning on line 87 in src/chart.tsx

GitHub Actions / Tests

React Hook useEffect has missing dependencies: 'destroyChart' and 'renderChart'. Either include them or remove the dependency array
useEffect(() => {
if (!chartRef.current) return;
destroyChart();
setTimeout(renderChart);
}, [type]);

Check warning on line 94 in src/chart.tsx

GitHub Actions / Tests

React Hook useEffect has missing dependencies: 'destroyChart' and 'renderChart'. Either include them or remove the dependency array
useEffect(() => {
renderChart();
return () => destroyChart();
}, []);

Check warning on line 100 in src/chart.tsx

GitHub Actions / Tests

React Hook useEffect has missing dependencies: 'destroyChart' and 'renderChart'. Either include them or remove the dependency array
return (
<canvas
xMin: 1,
xMax: 2,
yMin: 50,
yMax: yMax,

Check warning on line 178 in stories/Chart.stories.tsx

GitHub Actions / Tests

Expected property shorthand
backgroundColor: 'rgba(255, 99, 132, 0.25)',
},
},