Skip to content

Commit afc9174

Browse files
authored
chore: upgrade deps. (#97)
1 parent fd874e7 commit afc9174

File tree

8 files changed

+5117
-5513
lines changed

8 files changed

+5117
-5513
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup Node
1919
uses: actions/setup-node@v4.1.0
2020
with:
21-
node-version: '20.18.1'
21+
node-version: '22.18.0'
2222
- name: Install Dependencies
2323
run: npm ci
2424
- name: Save error log

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Setup Node
2222
uses: actions/setup-node@v4.1.0
2323
with:
24-
node-version: '20.18.1'
24+
node-version: '22.18.0'
2525
- name: Install Dependencies
2626
run: npm ci
2727
- name: Save error log

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Setup Node
1515
uses: actions/setup-node@v4.1.0
1616
with:
17-
node-version: '20.18.1'
17+
node-version: '22.18.0'
1818
- name: Install Dependencies
1919
run: npm ci
2020
- name: Save error log

package-lock.json

Lines changed: 5081 additions & 5464 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 22 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -25,40 +25,34 @@
2525
"prettier": "prettier --no-error-on-unmatched-pattern --write *.ts packages/**/{src,__tests__}/**/*.{ts,tsx}"
2626
},
2727
"devDependencies": {
28-
"@babel/preset-env": "^7.23.7",
29-
"@babel/preset-react": "^7.23.3",
30-
"@babel/preset-typescript": "^7.23.3",
31-
"@eslint/js": "^9.17.0",
32-
"@knighted/duel": "^2.0.0",
33-
"@testing-library/dom": "^10.3.0",
34-
"@testing-library/jest-dom": "^6.4.5",
35-
"@testing-library/react": "^16.1.0",
36-
"@testing-library/user-event": "^14.5.2",
37-
"@types/eslint__js": "^8.42.3",
38-
"@types/jest": "^29.5.12",
39-
"@types/react": "^19.0.1",
40-
"@types/react-dom": "^19.0.2",
41-
"babel-jest": "^30.0.0-alpha.7",
42-
"eslint": "^9.16.0",
28+
"@babel/preset-env": "^7.28.0",
29+
"@babel/preset-react": "^7.27.1",
30+
"@babel/preset-typescript": "^7.27.1",
31+
"@eslint/js": "^9.32.0",
32+
"@knighted/duel": "^2.1.5",
33+
"@testing-library/jest-dom": "^6.6.4",
34+
"@testing-library/react": "^16.3.0",
35+
"@testing-library/user-event": "^14.6.1",
36+
"@types/jest": "^30.0.0",
37+
"@types/react": "^19.1.9",
38+
"@types/react-dom": "^19.1.7",
39+
"babel-jest": "^30.0.5",
40+
"eslint": "^9.32.0",
4341
"eslint-plugin-jsx-a11y": "^6.10.2",
44-
"eslint-plugin-react": "^7.37.2",
45-
"eslint-plugin-react-hooks": "^5.1.0",
46-
"globals": "^15.6.0",
42+
"eslint-plugin-react": "^7.37.5",
43+
"eslint-plugin-react-hooks": "^5.2.0",
44+
"globals": "^16.3.0",
4745
"http-server": "^14.1.1",
48-
"jest": "^30.0.0-alpha.7",
49-
"jest-environment-jsdom": "^30.0.0-alpha.7",
46+
"jest": "^30.0.5",
47+
"jest-environment-jsdom": "^30.0.5",
5048
"prettier": "^3.2.5",
5149
"ts-jest-resolver": "^2.0.1",
52-
"typescript": "^5.7.2",
53-
"typescript-eslint": "^8.18.0"
50+
"typescript": "^5.9.2",
51+
"typescript-eslint": "^8.39.0"
5452
},
5553
"overrides": {
56-
"react": "^19.0.0",
57-
"react-dom": "^19.0.0",
58-
"tough-cookie": "^5.0.0",
59-
"whatwg-url": "^14.0.0",
60-
"jsdom": "^26.0.0",
61-
"rimraf": "^4.4.1",
54+
"react": "^19.1.1",
55+
"react-dom": "^19.1.1",
6256
"test-exclude": {
6357
"glob": "^9.3.5"
6458
}

packages/story/.storybook/main.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,11 @@ import type { TransformOptions } from '@babel/core'
44
const config: StorybookConfig = {
55
stories: ['../src/story.tsx', '../src/count.story.tsx', '../src/update.story.tsx'],
66
addons: [
7-
'@storybook/addon-controls',
8-
'@storybook/addon-actions',
97
'@storybook/addon-a11y',
108
'@storybook/addon-docs',
119
'@storybook/addon-webpack5-compiler-babel'
1210
],
1311
framework: '@storybook/react-webpack5',
14-
docs: {
15-
autodocs: 'tag',
16-
},
1712
babel: async (options: TransformOptions) => {
1813
return {...options, rootMode: 'upward'}
1914
}

packages/story/package.json

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,15 @@
1313
"license": "MIT",
1414
"dependencies": {
1515
"@faker-js/faker": "^7.6.0",
16-
"@storybook/addon-a11y": "^8.6.4",
17-
"@storybook/addon-actions": "^8.6.4",
18-
"@storybook/addon-controls": "^8.6.4",
19-
"@storybook/addon-docs": "^8.6.4",
20-
"@storybook/addon-webpack5-compiler-babel": "^3.0.5",
21-
"@storybook/react": "^8.6.4",
22-
"@storybook/react-webpack5": "^8.6.4",
16+
"@storybook/addon-a11y": "^9.1.1",
17+
"@storybook/addon-docs": "^9.1.1",
18+
"@storybook/addon-webpack5-compiler-babel": "^3.0.6",
19+
"@storybook/react": "^9.1.1",
20+
"@storybook/react-webpack5": "^9.1.1",
2321
"html-react-parser": "^5.2.0",
24-
"react": "^19.0.0",
25-
"react-dom": "^19.0.0",
26-
"storybook": "^8.4.7",
27-
"tts-react": "^4.1.0"
22+
"react": "^19.1.1",
23+
"react-dom": "^19.1.1",
24+
"storybook": "^9.1.1",
25+
"tts-react": "^4.1.1"
2826
}
2927
}

packages/tts-react/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tts-react",
3-
"version": "4.1.0",
3+
"version": "4.1.1",
44
"description": "React hook and component for converting text to speech using the Web Speech API or Amazon Polly.",
55
"type": "module",
66
"main": "dist/index.js",
@@ -31,7 +31,7 @@
3131
},
3232
"repository": {
3333
"type": "git",
34-
"url": "https://github.com/morganney/tts-react.git",
34+
"url": "git+https://github.com/morganney/tts-react.git",
3535
"directory": "packages/tts-react"
3636
},
3737
"bugs": {

0 commit comments

Comments
 (0)