Skip to content

Commit 0a02a17

Browse files
authored
Merge pull request #36 from sgratzl/release/v3.9.0
Release v3.9.0
2 parents f3c6112 + fc3c8ca commit 0a02a17

23 files changed

+2336
-2378
lines changed

.yarn/releases/yarn-3.2.1.cjs

Lines changed: 0 additions & 786 deletions
This file was deleted.

.yarn/releases/yarn-3.2.2.cjs

Lines changed: 783 additions & 0 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.2.1.cjs
6+
yarnPath: .yarn/releases/yarn-3.2.2.cjs

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
MIT License
22

33
Copyright (c) 2019 datavisyn GmbH
4-
Copyright (c) 2021 Samuel Gratzl
4+
Copyright (c) 2019-2022 Samuel Gratzl
55

66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal

package.json

Lines changed: 28 additions & 27 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.8.0",
4+
"version": "3.9.0",
55
"publishConfig": {
66
"access": "public"
77
},
@@ -38,8 +38,9 @@
3838
},
3939
"global": "ChartBoxPlot",
4040
"module": "build/index.js",
41-
"main": "build/index.cjs.js",
42-
"browser": "build/index.umd.js",
41+
"main": "build/index.cjs",
42+
"node": "build/index.cjs",
43+
"umd": "build/index.umd.js",
4344
"unpkg": "build/index.umd.min.js",
4445
"jsdelivr": "build/index.umd.min.js",
4546
"types": "build/index.d.ts",
@@ -50,7 +51,7 @@
5051
"src/**/*.tsx"
5152
],
5253
"peerDependencies": {
53-
"chart.js": "^3.8.0"
54+
"chart.js": "^3.9.1"
5455
},
5556
"browserslist": [
5657
"Firefox ESR",
@@ -62,41 +63,41 @@
6263
},
6364
"devDependencies": {
6465
"@chiogen/rollup-plugin-terser": "^7.0.2",
65-
"@rollup/plugin-commonjs": "^22.0.0",
66+
"@rollup/plugin-commonjs": "^22.0.2",
6667
"@rollup/plugin-node-resolve": "^13.3.0",
6768
"@rollup/plugin-replace": "^4.0.0",
68-
"@rollup/plugin-typescript": "^8.3.3",
69-
"@types/jest": "^28.1.1",
70-
"@types/jest-image-snapshot": "^4.3.1",
71-
"@types/node": "^17.0.42",
72-
"@typescript-eslint/eslint-plugin": "^5.27.1",
73-
"@typescript-eslint/parser": "^5.27.1",
69+
"@rollup/plugin-typescript": "^8.3.4",
70+
"@types/jest": "^28.1.6",
71+
"@types/jest-image-snapshot": "^5.1.0",
72+
"@types/node": "^18.7.3",
73+
"@typescript-eslint/eslint-plugin": "^5.33.0",
74+
"@typescript-eslint/parser": "^5.33.0",
7475
"@yarnpkg/sdks": "^2.6.2",
75-
"canvas": "^2.9.1",
76+
"canvas": "^2.9.3",
7677
"canvas-5-polyfill": "^0.1.5",
77-
"chart.js": "^3.8.0",
78-
"eslint": "^8.17.0",
78+
"chart.js": "^3.9.1",
79+
"eslint": "^8.22.0",
7980
"eslint-config-airbnb-typescript": "^17.0.0",
8081
"eslint-config-prettier": "^8.5.0",
8182
"eslint-config-react-app": "^7.0.1",
8283
"eslint-plugin-flowtype": "^8.0.3",
8384
"eslint-plugin-import": "^2.26.0",
84-
"eslint-plugin-jsx-a11y": "^6.5.1",
85-
"eslint-plugin-prettier": "^4.0.0",
86-
"eslint-plugin-react": "^7.30.0",
87-
"eslint-plugin-react-hooks": "^4.5.0",
88-
"jest": "^28.1.1",
89-
"jest-environment-jsdom": "^28.1.1",
85+
"eslint-plugin-jsx-a11y": "^6.6.1",
86+
"eslint-plugin-prettier": "^4.2.1",
87+
"eslint-plugin-react": "^7.30.1",
88+
"eslint-plugin-react-hooks": "^4.6.0",
89+
"jest": "^28.1.3",
90+
"jest-environment-jsdom": "^28.1.3",
9091
"jest-image-snapshot": "^5.1.0",
91-
"prettier": "^2.6.2",
92+
"prettier": "^2.7.1",
9293
"rimraf": "^3.0.2",
93-
"rollup": "~2.75.6",
94+
"rollup": "^2.78.0",
9495
"rollup-plugin-cleanup": "^3.2.1",
9596
"rollup-plugin-dts": "^4.2.2",
96-
"ts-jest": "^28.0.4",
97+
"ts-jest": "^28.0.7",
9798
"tslib": "^2.4.0",
98-
"typedoc": "^0.22.17",
99-
"typescript": "^4.7.3"
99+
"typedoc": "^0.23.10",
100+
"typescript": "^4.7.4"
100101
},
101102
"scripts": {
102103
"clean": "rimraf build docs node_modules \"*.tgz\" \"*.tsbuildinfo\"",
@@ -118,9 +119,9 @@
118119
"prepare": "yarn run build"
119120
},
120121
"dependenciesMeta": {
121-
"chart.js@3.8.0": {
122+
"chart.js@3.9.1": {
122123
"unplugged": true
123124
}
124125
},
125-
"packageManager": "yarn@3.2.1"
126+
"packageManager": "yarn@3.2.2"
126127
}

rollup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export default function Config(options) {
5757
typescript(),
5858
resolve({
5959
mainFields: ['module', 'main'],
60-
extensions: ['.mjs', '.js', '.jsx', '.json', '.node'],
60+
extensions: ['.mjs', '.cjs', '.js', '.jsx', '.json', '.node'],
6161
modulesOnly: true,
6262
}),
6363
commonjs(),

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.8.0/dist/chart.js"></script>
5+
<script src="https://unpkg.com/chart.js@3.9.1/dist/chart.js"></script>
66
<script src="../build/index.umd.js"></script>
77
</head>
88

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.8.0/dist/chart.js"></script>
5+
<script src="https://unpkg.com/chart.js@3.9.1/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.8.0/dist/chart.js"></script>
5+
<script src="https://unpkg.com/chart.js@3.9.1/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.8.0/dist/chart.js"></script>
5+
<script src="https://unpkg.com/chart.js@3.9.1/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)