Skip to content

Commit 658078b

Browse files
authored
Merge pull request #55 from sgratzl/release/v4.1.1
Release v4.1.1
2 parents a60d048 + c01004d commit 658078b

15 files changed

+1062
-830
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 & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "chartjs-chart-graph",
33
"description": "Chart.js module for charting error bars",
4-
"version": "4.1.0",
4+
"version": "4.1.1",
55
"author": {
66
"name": "Samuel Gratzl",
77
"email": "sam@sgratzl.com",
@@ -54,8 +54,8 @@
5454
"last 2 Firefox versions"
5555
],
5656
"dependencies": {
57-
"@types/d3-force": "^3.0.3",
58-
"@types/d3-hierarchy": "^3.1.0",
57+
"@types/d3-force": "^3.0.4",
58+
"@types/d3-hierarchy": "^3.1.1",
5959
"d3-dispatch": "^3.0.1",
6060
"d3-force": "^3.0.0",
6161
"d3-hierarchy": "^3.1.2",
@@ -64,43 +64,43 @@
6464
},
6565
"devDependencies": {
6666
"@chiogen/rollup-plugin-terser": "^7.1.3",
67-
"@rollup/plugin-commonjs": "^23.0.7",
67+
"@rollup/plugin-commonjs": "^24.0.0",
6868
"@rollup/plugin-node-resolve": "^15.0.1",
6969
"@rollup/plugin-replace": "^5.0.2",
70-
"@rollup/plugin-typescript": "^10.0.1",
71-
"@types/jest": "^29.2.4",
70+
"@rollup/plugin-typescript": "^11.0.0",
71+
"@types/jest": "^29.2.5",
7272
"@types/jest-image-snapshot": "^6.1.0",
73-
"@types/node": "^18.11.16",
74-
"@types/seedrandom": "^3.0.2",
75-
"@typescript-eslint/eslint-plugin": "^5.46.1",
76-
"@typescript-eslint/parser": "^5.46.1",
73+
"@types/node": "^18.11.18",
74+
"@types/seedrandom": "^3.0.4",
75+
"@typescript-eslint/eslint-plugin": "^5.48.1",
76+
"@typescript-eslint/parser": "^5.48.1",
7777
"@yarnpkg/sdks": "^2.6.3",
78-
"canvas": "^2.10.2",
78+
"canvas": "^2.11.0",
7979
"canvas-5-polyfill": "^0.1.5",
80-
"chart.js": "^4.1.1",
81-
"eslint": "^8.30.0",
80+
"chart.js": "^4.1.2",
81+
"eslint": "^8.31.0",
8282
"eslint-config-airbnb-typescript": "^17.0.0",
83-
"eslint-config-prettier": "^8.5.0",
83+
"eslint-config-prettier": "^8.6.0",
8484
"eslint-config-react-app": "^7.0.1",
8585
"eslint-plugin-flowtype": "^8.0.3",
86-
"eslint-plugin-import": "^2.26.0",
87-
"eslint-plugin-jsx-a11y": "^6.6.1",
86+
"eslint-plugin-import": "^2.27.4",
87+
"eslint-plugin-jsx-a11y": "^6.7.1",
8888
"eslint-plugin-prettier": "^4.2.1",
89-
"eslint-plugin-react": "^7.31.11",
89+
"eslint-plugin-react": "^7.32.0",
9090
"eslint-plugin-react-hooks": "^4.6.0",
9191
"jest": "^29.3.1",
9292
"jest-environment-jsdom": "^29.3.1",
9393
"jest-image-snapshot": "^6.1.0",
94-
"prettier": "^2.8.1",
95-
"rimraf": "^3.0.2",
96-
"rollup": "~3.7.5",
94+
"prettier": "^2.8.3",
95+
"rimraf": "^4.0.5",
96+
"rollup": "~3.10.0",
9797
"rollup-plugin-cleanup": "^3.2.1",
98-
"rollup-plugin-dts": "^5.0.0",
98+
"rollup-plugin-dts": "^5.1.1",
9999
"seedrandom": "^3.0.5",
100-
"ts-jest": "^29.0.3",
100+
"ts-jest": "^29.0.5",
101101
"tslib": "^2.4.1",
102-
"typedoc": "^0.23.22",
103-
"typescript": "4.9.3"
102+
"typedoc": "^0.23.24",
103+
"typescript": "^4.9.4"
104104
},
105105
"scripts": {
106106
"clean": "rimraf build docs node_modules \"*.tgz\" \"*.tsbuildinfo\"",
@@ -122,5 +122,5 @@
122122
"docs": "typedoc src/index.ts",
123123
"prepare": "yarn run build"
124124
},
125-
"packageManager": "yarn@3.3.0"
125+
"packageManager": "yarn@3.3.1"
126126
}

samples/default_esm.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
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",
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",
1616
"chartjs-chart-graph": "../build/index.js",
17-
"d3-force": "https://unpkg.com/d3-force?module",
18-
"d3-hierarchy": "https://unpkg.com/d3-hierarchy?module"
17+
"d3-force": " https://cdn.jsdelivr.net/npm/d3-force?module",
18+
"d3-hierarchy": " https://cdn.jsdelivr.net/npm/d3-hierarchy?module"
1919
}
2020
}
2121
</script>

samples/directed.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<script src="https://unpkg.com/chart.js@~4.1.1"></script>
4+
<script src=" https://cdn.jsdelivr.net/npm/chart.js@~4.1.1"></script>
55
<script src="../build/index.umd.js"></script>
66
</head>
77

samples/forceDirectedGraph.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<script src="https://unpkg.com/chart.js@~4.1.1"></script>
4+
<script src=" https://cdn.jsdelivr.net/npm/chart.js@~4.1.1"></script>
55
<script src="https://cdn.jsdelivr.net/npm/hammerjs@2.0.8"></script>
6-
<script src="https://unpkg.com/chartjs-plugin-zoom/dist/chartjs-plugin-zoom"></script>
6+
<script src=" https://cdn.jsdelivr.net/npm/chartjs-plugin-zoom/dist/chartjs-plugin-zoom"></script>
77
<script src="../build/index.umd.js"></script>
88
</head>
99

samples/forceDirectedLabel.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<script src="https://unpkg.com/chart.js@3/dist/chart.js"></script>
4+
<script src=" https://cdn.jsdelivr.net/npm/chart.js@3/dist/chart.js"></script>
55
<script src="https://cdn.jsdelivr.net/npm/chartjs-plugin-datalabels/dist/chartjs-plugin-datalabels.js"></script>
66
<script src="../build/index.umd.js"></script>
77
</head>

samples/graphChange.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<script src="https://unpkg.com/chart.js@~4.1.1"></script>
4+
<script src=" https://cdn.jsdelivr.net/npm/chart.js@~4.1.1"></script>
55
<script src="../build/index.umd.js"></script>
66
</head>
77

samples/multi.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<script src="https://unpkg.com/chart.js@~4.1.1"></script>
4+
<script src=" https://cdn.jsdelivr.net/npm/chart.js@~4.1.1"></script>
55
<script src="../build/index.umd.js"></script>
66
<style>
77
body {

0 commit comments

Comments
 (0)