Skip to content

Commit

Permalink
feat: upgrade to beta.4
Browse files Browse the repository at this point in the history
  • Loading branch information
sgratzl committed Oct 21, 2020
1 parent 630df1b commit a4e6bb3
Show file tree
Hide file tree
Showing 17 changed files with 750 additions and 546 deletions.
30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,34 +63,34 @@
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.3.3",
"@rollup/plugin-typescript": "^6.0.0",
"@types/jest": "^26.0.14",
"@types/jest-image-snapshot": "^4.1.0",
"@types/node": "^14.11.2",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"@yarnpkg/pnpify": "^2.2.1",
"@types/jest": "^26.0.15",
"@types/jest-image-snapshot": "^4.1.2",
"@types/node": "^14.14.0",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"@yarnpkg/pnpify": "^2.3.3",
"canvas": "^2.6.1",
"chart.js": "^3.0.0-beta.3",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"chart.js": "^3.0.0-beta.4",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.13.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.2",
"eslint-plugin-react-hooks": "^4.1.2",
"jest": "^26.4.2",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.0",
"jest-image-snapshot": "^4.2.0",
"prettier": "^2.1.2",
"release-it": "^14.0.3",
"release-it": "^14.2.0",
"rimraf": "^3.0.2",
"rollup": "^2.28.2",
"rollup": "^2.32.1",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-dts": "^1.4.13",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^26.4.1",
"tslib": "^2.0.1",
"tslib": "^2.0.3",
"typedoc": "^0.19.2",
"typescript": "^4.0.3"
},
Expand Down
2 changes: 1 addition & 1 deletion samples/animation.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<title>Box Plot Chart</title>
<script src="https://unpkg.com/[email protected].3/dist/chart.js"></script>
<script src="https://unpkg.com/[email protected].4/dist/chart.js"></script>
<script src="../build/index.umd.js"></script>
<style>
canvas {
Expand Down
2 changes: 1 addition & 1 deletion samples/datalimits.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<title>Box Plot Chart</title>
<script src="https://unpkg.com/[email protected].3/dist/chart.js"></script>
<script src="https://unpkg.com/[email protected].4/dist/chart.js"></script>
<script src="../build/index.umd.js"></script>
<script src="https://unpkg.com/d3-random@latest/dist/d3-random.min.js"></script>
<script src="./utils.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion samples/datastructures.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<title>Box Plot Chart</title>
<script src="https://unpkg.com/[email protected].3/dist/chart.js"></script>
<script src="https://unpkg.com/[email protected].4/dist/chart.js"></script>
<script src="../build/index.umd.js"></script>
<script src="https://unpkg.com/d3-random@latest/dist/d3-random.min.js"></script>
<script src="./utils.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion samples/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<title>Box Plot Chart</title>
<script src="https://unpkg.com/[email protected].3/dist/chart.js"></script>
<script src="https://unpkg.com/[email protected].4/dist/chart.js"></script>
<script src="../build/index.umd.js"></script>
<script src="https://unpkg.com/d3-random@latest/dist/d3-random.min.js"></script>
<script src="./utils.js"></script>
Expand Down
4 changes: 2 additions & 2 deletions samples/default_esm.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
<script type="importmap-shim">
{
"imports": {
"chart.js": "https://unpkg.com/[email protected].3?module",
"chart.js/helpers": "https://unpkg.com/[email protected].3/helpers/helpers.esm.js?module",
"chart.js": "https://unpkg.com/[email protected].4?module",
"chart.js/helpers": "https://unpkg.com/[email protected].4/helpers/helpers.esm.js?module",
"@sgratzl/boxplots": "https://unpkg.com/@sgratzl/boxplots?module",
"@sgratzl/chartjs-chart-boxplot": "../build/index.esm.js"
}
Expand Down
2 changes: 1 addition & 1 deletion samples/empty.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<title>Box Plot Chart</title>
<script src="https://unpkg.com/[email protected].3/dist/chart.js"></script>
<script src="https://unpkg.com/[email protected].4/dist/chart.js"></script>
<script src="../build/index.umd.js"></script>
<style>
canvas {
Expand Down
2 changes: 1 addition & 1 deletion samples/fivenum.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<title>Box Plot Chart</title>
<script src="https://unpkg.com/[email protected].3/dist/chart.js"></script>
<script src="https://unpkg.com/[email protected].4/dist/chart.js"></script>
<script src="../build/index.umd.js"></script>
<style>
canvas {
Expand Down
2 changes: 1 addition & 1 deletion samples/horizontalBoxplot.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<title>Horizontal Bar Chart</title>
<script src="https://unpkg.com/[email protected].3/dist/chart.js"></script>
<script src="https://unpkg.com/[email protected].4/dist/chart.js"></script>
<script src="../build/index.umd.js"></script>
<script src="https://unpkg.com/d3-random@latest/dist/d3-random.min.js"></script>
<script src="./utils.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion samples/horizontalViolin.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<title>Violin Chart</title>
<script src="https://unpkg.com/[email protected].3/dist/chart.js"></script>
<script src="https://unpkg.com/[email protected].4/dist/chart.js"></script>
<script src="../build/index.umd.js"></script>
<script src="https://unpkg.com/d3-random@latest/dist/d3-random.min.js"></script>
<script src="./utils.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion samples/hybrid.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<title>Box Plot Chart</title>
<script src="https://unpkg.com/[email protected].3/dist/chart.js"></script>
<script src="https://unpkg.com/[email protected].4/dist/chart.js"></script>
<script src="../build/index.umd.js"></script>
<script src="./utils.js"></script>
<style>
Expand Down
2 changes: 1 addition & 1 deletion samples/items.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<title>Box Plot Chart</title>
<script src="https://unpkg.com/[email protected].3/dist/chart.js"></script>
<script src="https://unpkg.com/[email protected].4/dist/chart.js"></script>
<script src="../build/index.umd.js"></script>
<script src="https://unpkg.com/d3-random@latest/dist/d3-random.min.js"></script>
<script src="./utils.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion samples/logarithm.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<title>Box Plot Chart</title>
<script src="https://unpkg.com/[email protected].3/dist/chart.js"></script>
<script src="https://unpkg.com/[email protected].4/dist/chart.js"></script>
<script src="../build/index.umd.js"></script>
<script src="https://unpkg.com/d3-random@latest/dist/d3-random.min.js"></script>
<script src="./utils.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion samples/mediancolor.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<title>Box Plot Chart</title>
<script src="https://unpkg.com/[email protected].3/dist/chart.js"></script>
<script src="https://unpkg.com/[email protected].4/dist/chart.js"></script>
<script src="../build/index.umd.js"></script>
<style>
canvas {
Expand Down
2 changes: 1 addition & 1 deletion samples/minmax.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<title>Box Plot Chart</title>
<script src="https://unpkg.com/[email protected].3/dist/chart.js"></script>
<script src="https://unpkg.com/[email protected].4/dist/chart.js"></script>
<script src="../build/index.umd.js"></script>
<script src="https://unpkg.com/d3-random@latest/dist/d3-random.min.js"></script>
<script src="./utils.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion samples/violin.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<title>Violin Chart</title>
<script src="https://unpkg.com/[email protected].3/dist/chart.js"></script>
<script src="https://unpkg.com/[email protected].4/dist/chart.js"></script>
<script src="../build/index.umd.js"></script>
<script src="https://unpkg.com/d3-random@latest/dist/d3-random.min.js"></script>
<script src="./utils.js"></script>
Expand Down
Loading

0 comments on commit a4e6bb3

Please sign in to comment.