Skip to content

Commit 5681b28

Browse files
fix(deps): update all dependencies (#128)
Co-authored-by: Renovate Bot <renovate@whitesourcesoftware.com>
1 parent b63d0e3 commit 5681b28

7 files changed

Lines changed: 57 additions & 47 deletions

File tree

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches: [master]
66
pull_request:
77
branches: [master]
8-
8+
99
permissions:
1010
actions: read
1111
contents: read
@@ -37,4 +37,4 @@ jobs:
3737
- name: Perform CodeQL Analysis
3838
uses: github/codeql-action/analyze@v3
3939
with:
40-
category: "/language:${{ matrix.language }}"
40+
category: '/language:${{ matrix.language }}'

package-lock.json

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

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -60,31 +60,31 @@
6060
"dependencies": {
6161
"@inquirer/core": "^9.1.0",
6262
"@inquirer/prompts": "^8.2.0",
63-
"chalk": "^5.4.1",
63+
"chalk": "^5.6.2",
6464
"commander": "^12.1.0",
6565
"deepmerge": "^4.3.1",
6666
"detect-package-manager": "^3.0.2",
6767
"ejs": "^3.1.10",
68-
"execa": "^9.5.2",
68+
"execa": "^9.6.1",
6969
"fs-extra": "^11.3.3",
7070
"ora": "^8.1.1",
71-
"typescript": "^5.7.2",
71+
"typescript": "^5.9.3",
7272
"zod": "^4.3.6"
7373
},
7474
"devDependencies": {
7575
"@types/ejs": "^3.1.5",
7676
"@types/fs-extra": "^11.0.4",
77-
"@types/node": "^22.19.11",
78-
"@typescript-eslint/eslint-plugin": "^8.21.0",
79-
"@typescript-eslint/parser": "^8.21.0",
77+
"@types/node": "^24.10.9",
78+
"@typescript-eslint/eslint-plugin": "^8.56.1",
79+
"@typescript-eslint/parser": "^8.56.1",
8080
"@vitest/coverage-v8": "^4.0.18",
8181
"@vitest/ui": "^4.0.18",
8282
"eslint": "^9.39.2",
8383
"husky": "^9.1.7",
8484
"lint-staged": "^16.2.7",
8585
"prettier": "^3.8.1",
86-
"tsx": "^4.19.2",
87-
"typescript-eslint": "^8.54.0",
86+
"tsx": "^4.21.0",
87+
"typescript-eslint": "^8.56.1",
8888
"vitest": "^4.0.18"
8989
},
9090
"lint-staged": {

src/dependencies/resolver.ts

Lines changed: 16 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -3,52 +3,52 @@
33
*/
44
export const VERSION_REGISTRY: Record<string, string> = {
55
// Runtime
6-
'vite': '^6.0.7',
6+
vite: '^6.0.7',
77
'@vitejs/plugin-react': '^5.0.0',
8-
'next': '^16.1.6',
9-
'react': '^19.0.0',
8+
next: '^16.1.6',
9+
react: '^19.0.0',
1010
'react-dom': '^19.0.0',
1111

1212
// Language
13-
'typescript': '^5.7.2',
13+
typescript: '^5.7.2',
1414

1515
// Styling
16-
'tailwindcss': '^4.0.0',
16+
tailwindcss: '^4.0.0',
1717
'@tailwindcss/postcss': '^4.0.0',
18-
'postcss': '^8.4.49',
19-
'autoprefixer': '^10.4.20',
18+
postcss: '^8.4.49',
19+
autoprefixer: '^10.4.20',
2020
'styled-components': '^6.1.14',
2121

2222
// State Management
2323
'@reduxjs/toolkit': '^2.5.0',
2424
'react-redux': '^9.2.0',
25-
'zustand': '^5.0.3',
25+
zustand: '^5.0.3',
2626

2727
// Data Fetching
2828
'@tanstack/react-query': '^5.62.10',
2929
'@tanstack/react-query-devtools': '^5.62.10',
3030

3131
// Testing - Unit
32-
'vitest': '^2.1.8',
32+
vitest: '^2.1.8',
3333
'@vitest/ui': '^2.1.8',
34-
'jest': '^29.7.0',
34+
jest: '^29.7.0',
3535

3636
// Testing - Component
3737
'@testing-library/react': '^16.1.0',
3838
'@testing-library/jest-dom': '^6.6.3',
3939
'@testing-library/user-event': '^14.5.2',
40-
'jsdom': '^25.0.1',
40+
jsdom: '^25.0.1',
4141

4242
// Testing - E2E
43-
'playwright': '^1.49.1',
43+
playwright: '^1.49.1',
4444
'@playwright/test': '^1.49.1',
45-
'cypress': '^15.0.0',
45+
cypress: '^15.0.0',
4646

4747
// Formatting
48-
'prettier': '^3.4.2',
48+
prettier: '^3.4.2',
4949

5050
// Build & Dev
51-
'tsx': '^4.19.2',
51+
tsx: '^4.19.2',
5252

5353
// Type definitions
5454
'@types/react': '^19.0.6',
@@ -125,9 +125,7 @@ export class DependencyResolver {
125125
*/
126126
private pinVersion(version: string): string {
127127
// Check if version is in registry
128-
const pkg = Object.keys(VERSION_REGISTRY).find(
129-
(key) => VERSION_REGISTRY[key] === version
130-
);
128+
const pkg = Object.keys(VERSION_REGISTRY).find((key) => VERSION_REGISTRY[key] === version);
131129
if (pkg) {
132130
return VERSION_REGISTRY[pkg];
133131
}

src/templates/overlays/runtime/vite/manifest.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,3 @@
2626
"exclude": ["manifest.json"]
2727
}
2828
}
29-

src/templates/overlays/testing/jest/manifest.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"devDependencies": {
88
"jest": "^29.7.0",
99
"jest-environment-jsdom": "^29.7.0",
10-
"@types/jest": "^29.5.14",
10+
"@types/jest": "^30.0.0",
1111
"@testing-library/react": "^16.1.0",
1212
"@testing-library/jest-dom": "^6.6.3",
1313
"@testing-library/user-event": "^14.5.2",
@@ -24,4 +24,3 @@
2424
"exclude": ["manifest.json"]
2525
}
2626
}
27-

src/templates/overlays/testing/vitest/manifest.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,3 @@
2525
"exclude": ["manifest.json"]
2626
}
2727
}
28-

0 commit comments

Comments
 (0)