Skip to content

Commit 16824b9

Browse files
committed
feat: upgrade to beta.9
1 parent 9aac596 commit 16824b9

20 files changed

+308
-220
lines changed

package.json

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@sgratzl/chartjs-chart-boxplot",
33
"description": "Chart.js module for charting boxplots and violin charts",
4-
"version": "3.0.0-beta.7",
4+
"version": "3.0.0-beta.8",
55
"publishConfig": {
66
"access": "public"
77
},
@@ -56,43 +56,43 @@
5656
"last 2 Firefox versions"
5757
],
5858
"dependencies": {
59-
"@sgratzl/boxplots": "^1.2.1"
59+
"@sgratzl/boxplots": "^1.2.2"
6060
},
6161
"devDependencies": {
6262
"@rollup/plugin-commonjs": "^17.0.0",
63-
"@rollup/plugin-node-resolve": "^11.0.0",
63+
"@rollup/plugin-node-resolve": "^11.1.0",
6464
"@rollup/plugin-replace": "^2.3.4",
65-
"@rollup/plugin-typescript": "^8.0.0",
66-
"@types/jest": "^26.0.18",
65+
"@rollup/plugin-typescript": "^8.1.0",
66+
"@types/jest": "^26.0.20",
6767
"@types/jest-image-snapshot": "^4.1.3",
68-
"@types/node": "^14.14.11",
69-
"@typescript-eslint/eslint-plugin": "^4.9.1",
70-
"@typescript-eslint/parser": "^4.9.1",
68+
"@types/node": "^14.14.21",
69+
"@typescript-eslint/eslint-plugin": "^4.13.0",
70+
"@typescript-eslint/parser": "^4.13.0",
7171
"@yarnpkg/pnpify": "^2.4.0",
7272
"canvas": "^2.6.1",
73-
"chart.js": "^3.0.0-beta.7",
74-
"eslint": "^7.15.0",
75-
"eslint-config-prettier": "^7.0.0",
73+
"chart.js": "^3.0.0-beta.9",
74+
"eslint": "^7.18.0",
75+
"eslint-config-prettier": "^7.1.0",
7676
"eslint-config-react-app": "^6.0.0",
7777
"eslint-plugin-flowtype": "^5.2.0",
7878
"eslint-plugin-import": "^2.22.1",
7979
"eslint-plugin-jsx-a11y": "^6.4.1",
80-
"eslint-plugin-prettier": "^3.2.0",
81-
"eslint-plugin-react": "^7.21.5",
80+
"eslint-plugin-prettier": "^3.3.1",
81+
"eslint-plugin-react": "^7.22.0",
8282
"eslint-plugin-react-hooks": "^4.2.0",
8383
"jest": "^26.6.3",
84-
"jest-image-snapshot": "^4.2.0",
84+
"jest-image-snapshot": "^4.3.0",
8585
"prettier": "^2.2.1",
8686
"release-it": "^14.2.2",
8787
"rimraf": "^3.0.2",
88-
"rollup": "^2.34.2",
88+
"rollup": "^2.36.2",
8989
"rollup-plugin-cleanup": "^3.2.1",
90-
"rollup-plugin-dts": "^2.0.0",
90+
"rollup-plugin-dts": "^2.0.1",
9191
"rollup-plugin-terser": "^7.0.2",
9292
"ts-jest": "^26.4.4",
93-
"tslib": "^2.0.3",
94-
"typedoc": "^0.19.2",
95-
"typescript": "^4.1.2"
93+
"tslib": "^2.1.0",
94+
"typedoc": "^0.20.16",
95+
"typescript": "^4.1.3"
9696
},
9797
"scripts": {
9898
"clean": "rimraf build node_modules \"*.tgz\"",

samples/animation.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<title>Box Plot Chart</title>
5-
<script src="https://unpkg.com/chart.js@3.0.0-beta.7/dist/chart.js"></script>
5+
<script src="https://unpkg.com/chart.js@3.0.0-beta.9/dist/chart.js"></script>
66
<script src="../build/index.umd.js"></script>
77
<style>
88
canvas {

samples/datalimits.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<title>Box Plot Chart</title>
5-
<script src="https://unpkg.com/chart.js@3.0.0-beta.7/dist/chart.js"></script>
5+
<script src="https://unpkg.com/chart.js@3.0.0-beta.9/dist/chart.js"></script>
66
<script src="../build/index.umd.js"></script>
77
<script src="https://unpkg.com/d3-random@latest/dist/d3-random.min.js"></script>
88
<script src="./utils.js"></script>

samples/datastructures.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<title>Box Plot Chart</title>
5-
<script src="https://unpkg.com/chart.js@3.0.0-beta.7/dist/chart.js"></script>
5+
<script src="https://unpkg.com/chart.js@3.0.0-beta.9/dist/chart.js"></script>
66
<script src="../build/index.umd.js"></script>
77
<script src="https://unpkg.com/d3-random@latest/dist/d3-random.min.js"></script>
88
<script src="./utils.js"></script>

samples/default.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<title>Box Plot Chart</title>
5-
<script src="https://unpkg.com/chart.js@3.0.0-beta.7/dist/chart.js"></script>
5+
<script src="https://unpkg.com/chart.js@3.0.0-beta.9/dist/chart.js"></script>
66
<script src="../build/index.umd.js"></script>
77
<script src="https://unpkg.com/d3-random@latest/dist/d3-random.min.js"></script>
88
<script src="./utils.js"></script>

samples/default_esm.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
<script type="importmap-shim">
1212
{
1313
"imports": {
14-
"chart.js": "https://unpkg.com/chart.js@3.0.0-beta.7?module",
15-
"chart.js/helpers": "https://unpkg.com/chart.js@3.0.0-beta.7/helpers/helpers.esm.js?module",
14+
"chart.js": "https://unpkg.com/chart.js@3.0.0-beta.9?module",
15+
"chart.js/helpers": "https://unpkg.com/chart.js@3.0.0-beta.9/helpers/helpers.esm.js?module",
1616
"@sgratzl/boxplots": "https://unpkg.com/@sgratzl/boxplots?module",
1717
"@sgratzl/chartjs-chart-boxplot": "../build/index.esm.js"
1818
}

samples/empty.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<title>Box Plot Chart</title>
5-
<script src="https://unpkg.com/chart.js@3.0.0-beta.7/dist/chart.js"></script>
5+
<script src="https://unpkg.com/chart.js@3.0.0-beta.9/dist/chart.js"></script>
66
<script src="../build/index.umd.js"></script>
77
<style>
88
canvas {

samples/fivenum.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<title>Box Plot Chart</title>
5-
<script src="https://unpkg.com/chart.js@3.0.0-beta.7/dist/chart.js"></script>
5+
<script src="https://unpkg.com/chart.js@3.0.0-beta.9/dist/chart.js"></script>
66
<script src="../build/index.umd.js"></script>
77
<style>
88
canvas {

samples/horizontalBoxplot.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<title>Horizontal Bar Chart</title>
5-
<script src="https://unpkg.com/chart.js@3.0.0-beta.7/dist/chart.js"></script>
5+
<script src="https://unpkg.com/chart.js@3.0.0-beta.9/dist/chart.js"></script>
66
<script src="../build/index.umd.js"></script>
77
<script src="https://unpkg.com/d3-random@latest/dist/d3-random.min.js"></script>
88
<script src="./utils.js"></script>

samples/horizontalViolin.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<title>Violin Chart</title>
5-
<script src="https://unpkg.com/chart.js@3.0.0-beta.7/dist/chart.js"></script>
5+
<script src="https://unpkg.com/chart.js@3.0.0-beta.9/dist/chart.js"></script>
66
<script src="../build/index.umd.js"></script>
77
<script src="https://unpkg.com/d3-random@latest/dist/d3-random.min.js"></script>
88
<script src="./utils.js"></script>

0 commit comments

Comments
 (0)