Skip to content

Commit adc7e67

Browse files
authored
Merge pull request #98 from sgratzl/upgrade
build: upgrade dependencies
2 parents f2e84ff + 001d056 commit adc7e67

File tree

5 files changed

+780
-1324
lines changed

5 files changed

+780
-1324
lines changed

docs/examples/styling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Styling
44

55
# Styling
66

7-
BoxPlot and Violin plots support various styling options. see ['IBoxAndWhiskerOptions'](/api/interfaces/interface.IBoxAndWhiskersOptions)
7+
BoxPlot and Violin plots support various styling options. see ['IBoxAndWhiskerOptions'](/api/interfaces/IBoxAndWhiskersOptions)
88

99
<script setup>
1010
import {config} from './styling';

docs/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ see [DataStructures](./examples/datastructures)
2727

2828
### Styling
2929

30-
see [IBoxAndWhiskersOptions](/api/interfaces/interface.IBoxAndWhiskersOptions.md), [IViolinElementOptions](/api/type-aliases/type-alias.IViolinElementOptions.md), and [Styling](./examples/styling)
30+
see [IBoxAndWhiskersOptions](/api/interfaces/IBoxAndWhiskersOptions.md), [IViolinElementOptions](/api/type-aliases/IViolinElementOptions.md), and [Styling](./examples/styling)

package.json

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -76,47 +76,47 @@
7676
"@rollup/plugin-commonjs": "^25.0.7",
7777
"@rollup/plugin-node-resolve": "^15.2.3",
7878
"@rollup/plugin-replace": "^5.0.5",
79-
"@rollup/plugin-typescript": "^11.1.5",
79+
"@rollup/plugin-typescript": "^11.1.6",
8080
"@types/jest": "^29.5.11",
81-
"@types/jest-image-snapshot": "^6.3.0",
82-
"@types/node": "^20.10.4",
83-
"@typescript-eslint/eslint-plugin": "^6.13.2",
84-
"@typescript-eslint/parser": "^6.13.2",
81+
"@types/jest-image-snapshot": "^6.4.0",
82+
"@types/node": "^20.11.5",
83+
"@typescript-eslint/eslint-plugin": "^6.19.0",
84+
"@typescript-eslint/parser": "^6.19.0",
8585
"@yarnpkg/sdks": "^3.1.0",
8686
"canvas": "^2.11.2",
8787
"canvas-5-polyfill": "^0.1.5",
8888
"chart.js": "^4.4.1",
89-
"eslint": "^8.55.0",
89+
"eslint": "^8.56.0",
9090
"eslint-config-airbnb-typescript": "^17.1.0",
9191
"eslint-config-prettier": "^9.1.0",
9292
"eslint-config-react-app": "^7.0.1",
9393
"eslint-plugin-flowtype": "^8.0.3",
94-
"eslint-plugin-import": "^2.29.0",
94+
"eslint-plugin-import": "^2.29.1",
9595
"eslint-plugin-jsx-a11y": "^6.8.0",
96-
"eslint-plugin-prettier": "^5.0.1",
96+
"eslint-plugin-prettier": "^5.1.3",
9797
"eslint-plugin-react": "^7.33.2",
9898
"eslint-plugin-react-hooks": "^4.6.0",
9999
"jest": "^29.7.0",
100100
"jest-environment-jsdom": "^29.7.0",
101-
"jest-image-snapshot": "^6.3.0",
102-
"prettier": "^3.1.0",
101+
"jest-image-snapshot": "^6.4.0",
102+
"prettier": "^3.2.4",
103103
"rimraf": "^5.0.5",
104-
"rollup": "^4.7.0",
104+
"rollup": "^4.9.6",
105105
"rollup-plugin-cleanup": "^3.2.1",
106106
"rollup-plugin-dts": "^6.1.0",
107107
"ts-jest": "^29.1.1",
108108
"tslib": "^2.6.2",
109-
"typedoc": "^0.25.4",
109+
"typedoc": "^0.25.7",
110110
"typedoc-plugin-markdown": "^4.0.0-next.16",
111-
"typedoc-vitepress-theme": "^1.0.0-next.3",
111+
"typedoc-vitepress-theme": "^1.0.0-next.7",
112112
"typescript": "^5.3.3",
113-
"vitepress": "^1.0.0-rc.31",
114-
"vue": "^3.3.11",
115-
"vue-chartjs": "^5.2.0"
113+
"vitepress": "^1.0.0-rc.39",
114+
"vue": "^3.4.15",
115+
"vue-chartjs": "^5.3.0"
116116
},
117117
"resolutions": {
118-
"@typescript-eslint/eslint-plugin": "^6.7.0",
119-
"@typescript-eslint/parser": "^6.7.0"
118+
"@typescript-eslint/eslint-plugin": "^6.19.0",
119+
"@typescript-eslint/parser": "^6.19.0"
120120
},
121121
"scripts": {
122122
"clean": "rimraf --glob build node_modules \"*.tgz\" \"*.tsbuildinfo\"",

tsconfig.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
"noEmit": true,
2727
"paths": {
2828
"@": ["./src"],
29-
"*": ["*", "node_modules/*"]
30-
}
29+
"*": ["*", "node_modules/*"],
30+
},
3131
},
32-
"include": ["src/**/*.ts", "src/**/*.tsx", "docs/**/*.tsx"]
32+
"include": ["src/**/*.ts", "src/**/*.tsx", "docs/**/*.tsx"],
3333
}

0 commit comments

Comments
 (0)