Skip to content

Commit

Permalink
Merge pull request #130 from sgratzl/upgrade
Browse files Browse the repository at this point in the history
build: upgrade dependencies
  • Loading branch information
sgratzl authored Dec 29, 2024
2 parents 7bebb9d + 2b87c69 commit 9aef5b8
Show file tree
Hide file tree
Showing 5 changed files with 1,707 additions and 1,362 deletions.
614 changes: 307 additions & 307 deletions .yarn/releases/yarn-4.5.1.cjs → .yarn/releases/yarn-4.5.3.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
yarnPath: .yarn/releases/yarn-4.5.1.cjs
yarnPath: .yarn/releases/yarn-4.5.3.cjs
32 changes: 32 additions & 0 deletions example/test.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<canvas id="CI_Results_Chart"></canvas>
<script type="module">
import { Chart as ChartJS, LinearScale, CategoryScale } from 'https://cdn.jsdelivr.net/npm/chart.js@4.4.6/+esm';
import {
BarWithErrorBarsController,
BarWithErrorBar,
} from 'https://cdn.jsdelivr.net/npm/chartjs-chart-error-bars@4.4/+esm';
ChartJS.register([BarWithErrorBarsController, BarWithErrorBar, LinearScale, CategoryScale]);

const chart = new ChartJS(document.getElementById('CI_Results_Chart').getContext('2d'), {
type: BarWithErrorBarsController.id,
data: {
labels: ['A', 'B'],
datasets: [
{
data: [
{
y: 4,
yMin: 1,
yMax: 6,
},
{
y: 2,
yMin: 1,
yMax: 4,
},
],
},
],
},
});
</script>
38 changes: 19 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,38 +52,38 @@
],
"devDependencies": {
"@chiogen/rollup-plugin-terser": "^7.1.3",
"@eslint/js": "~9.14.0",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-typescript": "^12.1.1",
"@eslint/js": "^9.17.0",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-typescript": "^12.1.2",
"@types/jest-image-snapshot": "^6.4.0",
"@types/node": "^22.9.0",
"@types/node": "^22.10.2",
"@yarnpkg/sdks": "^3.2.0",
"canvas": "^2.11.2",
"canvas": "^3.0.0",
"canvas-5-polyfill": "^0.1.5",
"chart.js": "^4.4.6",
"chart.js": "^4.4.7",
"chartjs-adapter-date-fns": "^3.0.0",
"date-fns": "^4.1.0",
"eslint": "~9.14.0",
"eslint": "^9.17.0",
"eslint-plugin-prettier": "^5.2.1",
"jest-image-snapshot": "^6.4.0",
"jsdom": "^25.0.1",
"prettier": "^3.3.3",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"rollup": "^4.27.2",
"rollup": "^4.29.1",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-dts": "^6.1.1",
"ts-jest": "^29.2.5",
"tslib": "^2.8.1",
"typedoc": "^0.26.11",
"typedoc-plugin-markdown": "^4.2.10",
"typedoc-vitepress-theme": "^1.0.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0",
"vite": "^5.4.11",
"typedoc": "^0.27.6",
"typedoc-plugin-markdown": "^4.3.3",
"typedoc-vitepress-theme": "^1.1.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"vite": "^6.0.6",
"vitepress": "^1.5.0",
"vitest": "^2.1.5",
"vitest": "^2.1.8",
"vue": "^3.5.13",
"vue-chartjs": "^5.3.2"
},
Expand All @@ -108,5 +108,5 @@
"docs:build": "yarn run docs:api && vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"packageManager": "yarn@4.5.1"
"packageManager": "yarn@4.5.3"
}
Loading

0 comments on commit 9aef5b8

Please sign in to comment.