Skip to content

Commit

Permalink
Merge pull request #10 from sgratzl/release/v4.1.0-alpha.0
Browse files Browse the repository at this point in the history
Release v4.1.0-alpha.0
  • Loading branch information
sgratzl committed Mar 4, 2023
2 parents d3daeb0 + 52e347c commit 7361b42
Show file tree
Hide file tree
Showing 12 changed files with 1,809 additions and 1,683 deletions.
823 changes: 0 additions & 823 deletions .yarn/releases/yarn-3.3.1.cjs

This file was deleted.

873 changes: 873 additions & 0 deletions .yarn/releases/yarn-3.4.1.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ packageExtensions:
dependencies:
eslint-import-resolver-node: "*"

yarnPath: .yarn/releases/yarn-3.3.1.cjs
yarnPath: .yarn/releases/yarn-3.4.1.cjs
16 changes: 16 additions & 0 deletions c/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"name": "chartjs-chart-funnel",
"type": "commonjs",
"main": "../build/index.cjs",
"module": "../build/index.js",
"require": "../build/index.cjs",
"types": "../build/index.d.ts",
"sideEffects": false,
"peerDependencies": {
"chart.js": ">=3.7.0"
},
"dependencies": {
"@types/chroma-js": "^2.4.0",
"chroma-js": "^2.4.2"
}
}
52 changes: 27 additions & 25 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "chartjs-chart-funnel",
"description": "Chart.js module for charting funnel charts",
"version": "4.0.0-alpha.1",
"version": "4.1.0-alpha.0",
"author": {
"name": "Samuel Gratzl",
"email": "[email protected]",
Expand Down Expand Up @@ -36,12 +36,14 @@
"scripts": "./build/index.umd.min.js",
"types": "./build/index.d.ts"
},
"./.pnp.cjs": "./.pnp.cjs"
"./.pnp.cjs": "./.pnp.cjs",
"./c": "./c"
},
"sideEffects": false,
"files": [
"build",
"src/**/*.ts"
"src/**/*.ts",
"c"
],
"peerDependencies": {
"chart.js": ">=3.7.0"
Expand All @@ -53,44 +55,44 @@
],
"devDependencies": {
"@chiogen/rollup-plugin-terser": "^7.1.3",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-typescript": "^11.0.0",
"@types/jest": "^29.2.5",
"@types/jest": "^29.4.0",
"@types/jest-image-snapshot": "^6.1.0",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"@yarnpkg/sdks": "^2.6.3",
"@types/node": "^18.14.6",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"@yarnpkg/sdks": "^2.7.0",
"canvas": "^2.11.0",
"canvas-5-polyfill": "^0.1.5",
"chart.js": "^4.1.1",
"eslint": "^8.31.0",
"chart.js": "^4.2.1",
"eslint": "^8.35.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"jest-image-snapshot": "^6.1.0",
"prettier": "^2.8.3",
"rimraf": "^4.0.5",
"rollup": "^3.10.0",
"prettier": "^2.8.4",
"rimraf": "^4.3.0",
"rollup": "^3.18.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-dts": "^5.1.1",
"rollup-plugin-dts": "^5.2.0",
"ts-jest": "^29.0.5",
"tslib": "^2.4.1",
"typedoc": "^0.23.24",
"typescript": "^4.9.4"
"tslib": "^2.5.0",
"typedoc": "^0.23.26",
"typescript": "^4.9.5"
},
"scripts": {
"clean": "rimraf build docs node_modules \"*.tgz\" \"*.tsbuildinfo\"",
"clean": "rimraf --glob build docs node_modules \"*.tgz\" \"*.tsbuildinfo\"",
"compile": "tsc -b tsconfig.c.json",
"compile:types": "tsc -p tsconfig.c.json --emitDeclarationOnly",
"start": "yarn run watch",
Expand All @@ -109,7 +111,7 @@
"docs": "typedoc src/index.ts",
"prepare": "yarn run build"
},
"packageManager": "yarn@3.3.1",
"packageManager": "yarn@3.4.1",
"dependenciesMeta": {
"@types/[email protected]": {
"unplugged": true
Expand All @@ -122,7 +124,7 @@
}
},
"dependencies": {
"@types/chroma-js": "^2.1.4",
"@types/chroma-js": "^2.4.0",
"chroma-js": "^2.4.2"
}
}
2 changes: 1 addition & 1 deletion samples/default.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.jsdelivr.net/npm/chart.js@~4.1.1"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js@~4.2.0"></script>
<script src="https://cdn.jsdelivr.net/npm/chartjs-plugin-datalabels"></script>
<script src="../build/index.umd.js"></script>
</head>
Expand Down
2 changes: 1 addition & 1 deletion samples/gradient.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.jsdelivr.net/npm/chart.js@~4.1.1"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js@~4.2.0"></script>
<script src="https://cdn.jsdelivr.net/npm/chartjs-plugin-datalabels"></script>
<script src="https://cdn.jsdelivr.net/npm/chroma-js"></script>
<script src="../build/index.umd.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion samples/hierarchical.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.jsdelivr.net/npm/chart.js@~4.1.1"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js@~4.2.0"></script>
<script src="https://cdn.jsdelivr.net/npm/chartjs-plugin-datalabels"></script>
<script src="https://cdn.jsdelivr.net/npm/chartjs-plugin-hierarchical"></script>
<script src="../build/index.umd.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion samples/horizontal.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.jsdelivr.net/npm/chart.js@~4.1.1"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js@~4.2.0"></script>
<script src="https://cdn.jsdelivr.net/npm/chartjs-plugin-datalabels"></script>
<script src="../build/index.umd.js"></script>
</head>
Expand Down
2 changes: 1 addition & 1 deletion samples/numbers.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.jsdelivr.net/npm/chart.js@~4.1.1"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js@~4.2.0"></script>
<script src="https://cdn.jsdelivr.net/npm/chartjs-plugin-datalabels"></script>
<script src="../build/index.umd.js"></script>
</head>
Expand Down
2 changes: 1 addition & 1 deletion samples/shrinkSide.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.jsdelivr.net/npm/chart.js@~4.1.1"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js@~4.2.0"></script>
<script src="../build/index.umd.js"></script>
</head>

Expand Down
Loading

0 comments on commit 7361b42

Please sign in to comment.