Skip to content

Commit 2612d5b

Browse files
authored
Merge pull request #57 from sgratzl/release/v4.1.1
Release v4.1.1
2 parents 3358b30 + fa93d3e commit 2612d5b

24 files changed

+1062
-826
lines changed

.eslintrc.cjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,6 @@ module.exports = {
2020
// '@typescript-eslint/no-non-null-assertion': 'off',
2121
'max-classes-per-file': 'off',
2222
'no-underscore-dangle': 'off',
23+
'import/extensions': 'off',
2324
},
2425
};

.yarn/releases/yarn-3.3.0.cjs renamed to .yarn/releases/yarn-3.3.1.cjs

Lines changed: 263 additions & 247 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ packageExtensions:
33
dependencies:
44
eslint-import-resolver-node: "*"
55

6-
yarnPath: .yarn/releases/yarn-3.3.0.cjs
6+
yarnPath: .yarn/releases/yarn-3.3.1.cjs

package.json

Lines changed: 25 additions & 22 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": "4.1.0",
4+
"version": "4.1.1",
55
"publishConfig": {
66
"access": "public"
77
},
@@ -73,41 +73,41 @@
7373
},
7474
"devDependencies": {
7575
"@chiogen/rollup-plugin-terser": "^7.1.3",
76-
"@rollup/plugin-commonjs": "^23.0.7",
76+
"@rollup/plugin-commonjs": "^24.0.0",
7777
"@rollup/plugin-node-resolve": "^15.0.1",
7878
"@rollup/plugin-replace": "^5.0.2",
79-
"@rollup/plugin-typescript": "^10.0.1",
80-
"@types/jest": "^29.2.4",
79+
"@rollup/plugin-typescript": "^11.0.0",
80+
"@types/jest": "^29.2.5",
8181
"@types/jest-image-snapshot": "^6.1.0",
82-
"@types/node": "^18.11.16",
83-
"@typescript-eslint/eslint-plugin": "^5.46.1",
84-
"@typescript-eslint/parser": "^5.46.1",
82+
"@types/node": "^18.11.18",
83+
"@typescript-eslint/eslint-plugin": "^5.48.1",
84+
"@typescript-eslint/parser": "^5.48.1",
8585
"@yarnpkg/sdks": "^2.6.3",
86-
"canvas": "^2.10.2",
86+
"canvas": "^2.11.0",
8787
"canvas-5-polyfill": "^0.1.5",
88-
"chart.js": "^4.1.1",
89-
"eslint": "^8.30.0",
88+
"chart.js": "^4.1.2",
89+
"eslint": "^8.31.0",
9090
"eslint-config-airbnb-typescript": "^17.0.0",
91-
"eslint-config-prettier": "^8.5.0",
91+
"eslint-config-prettier": "^8.6.0",
9292
"eslint-config-react-app": "^7.0.1",
9393
"eslint-plugin-flowtype": "^8.0.3",
94-
"eslint-plugin-import": "^2.26.0",
95-
"eslint-plugin-jsx-a11y": "^6.6.1",
94+
"eslint-plugin-import": "^2.27.4",
95+
"eslint-plugin-jsx-a11y": "^6.7.1",
9696
"eslint-plugin-prettier": "^4.2.1",
97-
"eslint-plugin-react": "^7.31.11",
97+
"eslint-plugin-react": "^7.32.0",
9898
"eslint-plugin-react-hooks": "^4.6.0",
9999
"jest": "^29.3.1",
100100
"jest-environment-jsdom": "^29.3.1",
101101
"jest-image-snapshot": "^6.1.0",
102-
"prettier": "^2.8.1",
103-
"rimraf": "^3.0.2",
104-
"rollup": "^3.7.5",
102+
"prettier": "^2.8.3",
103+
"rimraf": "^4.0.5",
104+
"rollup": "^3.10.0",
105105
"rollup-plugin-cleanup": "^3.2.1",
106-
"rollup-plugin-dts": "^5.0.0",
107-
"ts-jest": "^29.0.3",
106+
"rollup-plugin-dts": "^5.1.1",
107+
"ts-jest": "^29.0.5",
108108
"tslib": "^2.4.1",
109-
"typedoc": "^0.23.22",
110-
"typescript": "4.9.3"
109+
"typedoc": "^0.23.24",
110+
"typescript": "^4.9.4"
111111
},
112112
"scripts": {
113113
"clean": "rimraf build docs node_modules \"*.tgz\" \"*.tsbuildinfo\"",
@@ -128,10 +128,13 @@
128128
"docs": "typedoc src/index.ts",
129129
"prepare": "yarn run build"
130130
},
131-
"packageManager": "yarn@3.3.0",
131+
"packageManager": "yarn@3.3.1",
132132
"dependenciesMeta": {
133133
"chart.js@4.0.1": {
134134
"unplugged": true
135+
},
136+
"chart.js@4.1.2": {
137+
"unplugged": true
135138
}
136139
}
137140
}

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@~4.1.1"></script>
5+
<script src=" https://cdn.jsdelivr.net/npm/chart.js@~4.1.1"></script>
66
<script src="../build/index.umd.js"></script>
77
</head>
88

samples/boxplot_and_violin.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@~4.1.1"></script>
5+
<script src=" https://cdn.jsdelivr.net/npm/chart.js@~4.1.1"></script>
66
<script src="../build/index.umd.js"></script>
77
</head>
88

samples/datalimits.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<html>
33
<head>
44
<title>Box Plot Chart</title>
5-
<script src="https://unpkg.com/chart.js@~4.1.1"></script>
5+
<script src=" https://cdn.jsdelivr.net/npm/chart.js@~4.1.1"></script>
66
<script src="../build/index.umd.js"></script>
7-
<script src="https://unpkg.com/d3-random@latest/dist/d3-random.min.js"></script>
7+
<script src=" https://cdn.jsdelivr.net/npm/d3-random@latest/dist/d3-random.min.js"></script>
88
<script src="./utils.js"></script>
99
</head>
1010

samples/datastructures.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<html>
33
<head>
44
<title>Box Plot Chart</title>
5-
<script src="https://unpkg.com/chart.js@~4.1.1"></script>
5+
<script src=" https://cdn.jsdelivr.net/npm/chart.js@~4.1.1"></script>
66
<script src="../build/index.umd.js"></script>
7-
<script src="https://unpkg.com/d3-random@latest/dist/d3-random.min.js"></script>
7+
<script src=" https://cdn.jsdelivr.net/npm/d3-random@latest/dist/d3-random.min.js"></script>
88
<script src="./utils.js"></script>
99
</head>
1010

samples/default.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<html>
33
<head>
44
<title>Box Plot Chart</title>
5-
<script src="https://unpkg.com/chart.js@~4.1.1"></script>
5+
<script src=" https://cdn.jsdelivr.net/npm/chart.js@~4.1.1"></script>
66
<script src="../build/index.umd.js"></script>
7-
<script src="https://unpkg.com/d3-random@latest/dist/d3-random.min.js"></script>
7+
<script src=" https://cdn.jsdelivr.net/npm/d3-random@latest/dist/d3-random.min.js"></script>
88
<script src="./utils.js"></script>
99
</head>
1010

samples/default_esm.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
<div id="container" style="width: 75%">
88
<canvas id="canvas"></canvas>
99
</div>
10-
<script defer src="https://unpkg.com/es-module-shims"></script>
10+
<script defer src=" https://cdn.jsdelivr.net/npm/es-module-shims"></script>
1111
<script type="importmap-shim">
1212
{
1313
"imports": {
14-
"chart.js": "https://unpkg.com/chart.js@~4.1.1?module",
15-
"chart.js/helpers": "https://unpkg.com/chart.js@~4.1.1/helpers/helpers.esm.js?module",
16-
"@sgratzl/boxplots": "https://unpkg.com/@sgratzl/boxplots?module",
14+
"chart.js": " https://cdn.jsdelivr.net/npm/chart.js@~4.1.1?module",
15+
"chart.js/helpers": " https://cdn.jsdelivr.net/npm/chart.js@~4.1.1/helpers/helpers.esm.js?module",
16+
"@sgratzl/boxplots": " https://cdn.jsdelivr.net/npm/@sgratzl/boxplots?module",
1717
"@sgratzl/chartjs-chart-boxplot": "../build/index.js"
1818
}
1919
}

0 commit comments

Comments
 (0)