Skip to content

Commit abd612f

Browse files
authored
Merge pull request #98 from kyco/develop
Develop
2 parents 13fac2f + 786c253 commit abd612f

8 files changed

Lines changed: 836 additions & 1383 deletions

File tree

.github/workflows/build-branch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Setup environment
2020
uses: actions/setup-node@v6
2121
with:
22-
node-version: '24.13.0'
22+
node-version: '26.3.0'
2323
cache: 'pnpm'
2424

2525
- name: Install dependencies

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Setup environment
2929
uses: actions/setup-node@v6
3030
with:
31-
node-version: '24.13.0'
31+
node-version: '26.3.0'
3232
cache: 'pnpm'
3333
registry-url: 'https://registry.npmjs.org'
3434

@@ -62,7 +62,7 @@ jobs:
6262
- name: Setup Node
6363
uses: actions/setup-node@v6
6464
with:
65-
node-version: '24.13.0'
65+
node-version: '26.3.0'
6666
cache: 'pnpm'
6767

6868
- name: Install dependencies

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v24.13.0
1+
v26.3.0

biome.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,24 +18,22 @@
1818
},
1919
"linter": {
2020
"rules": {
21-
"recommended": true,
21+
"preset": "recommended",
2222
"style": {
2323
"noNonNullAssertion": "warn",
2424
"useConst": {
2525
"fix": "none",
2626
"level": "warn"
2727
}
2828
},
29-
"nursery": {
30-
"noShadow": "warn"
31-
},
3229
"a11y": {
3330
"noAutofocus": "warn",
3431
"useKeyWithClickEvents": "warn",
3532
"noStaticElementInteractions": "warn"
3633
},
3734
"suspicious": {
3835
"noArrayIndexKey": "warn",
36+
"noShadow": "warn",
3937
"noConsole": {
4038
"level": "warn",
4139
"options": {

demo/package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,23 +10,23 @@
1010
"update-packages": "pnpm dlx npm-check-updates --format group -i"
1111
},
1212
"dependencies": {
13-
"@tanstack/react-router": "^1.170.9",
14-
"@tanstack/react-virtual": "^3.13.26",
13+
"@tanstack/react-router": "^1.170.15",
14+
"@tanstack/react-virtual": "^3.14.3",
1515
"dev-dict": "link:..",
16-
"lucide-react": "^1.17.0",
17-
"react": "^19.2.6",
18-
"react-dom": "^19.2.6",
16+
"lucide-react": "^1.18.0",
17+
"react": "^19.2.7",
18+
"react-dom": "^19.2.7",
1919
"react-syntax-highlighter": "^16.1.1"
2020
},
2121
"devDependencies": {
22-
"@tailwindcss/vite": "^4.3.0",
23-
"@tanstack/router-plugin": "^1.168.12",
24-
"@types/react": "^19.2.15",
22+
"@tailwindcss/vite": "^4.3.1",
23+
"@tanstack/router-plugin": "^1.168.18",
24+
"@types/react": "^19.2.17",
2525
"@types/react-dom": "^19.2.3",
2626
"@types/react-syntax-highlighter": "^15.5.13",
2727
"@vitejs/plugin-react": "^6.0.2",
28-
"tailwindcss": "^4.3.0",
28+
"tailwindcss": "^4.3.1",
2929
"typescript": "^5.9.3",
30-
"vite": "^8.0.14"
30+
"vite": "^8.0.16"
3131
}
3232
}

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -80,24 +80,24 @@
8080
"test:watch": "vitest",
8181
"test:ui": "vitest --ui",
8282
"bundle-analyzer": "npx vite-bundle-visualizer",
83-
"update-packages": "pnpm dlx npm-check-updates --format group -i"
83+
"update-packages": "pnpm dlx npm-check-updates --format group --cooldown 1 -i"
8484
},
85-
"packageManager": "pnpm@10.33.0",
85+
"packageManager": "pnpm@11.7.0",
8686
"devDependencies": {
87-
"@biomejs/biome": "2.4.16",
87+
"@biomejs/biome": "2.5.0",
8888
"@semantic-release/changelog": "^6.0.3",
8989
"@semantic-release/git": "^10.0.1",
9090
"@semantic-release/github": "^12.0.8",
9191
"@semantic-release/npm": "^13.1.5",
92-
"@types/node": "^25.9.1",
93-
"@vitest/ui": "^4.1.8",
92+
"@types/node": "^25.9.3",
93+
"@vitest/ui": "^4.1.9",
9494
"conventional-changelog-conventionalcommits": "^9.3.1",
9595
"globals": "^17.6.0",
96-
"semantic-release": "^25.0.3",
96+
"semantic-release": "^25.0.5",
9797
"tsx": "^4.22.4",
9898
"typescript": "^5.9.3",
9999
"vite": "^8.0.16",
100100
"vite-plugin-dts": "^5.0.2",
101-
"vitest": "^4.1.8"
101+
"vitest": "^4.1.9"
102102
}
103103
}

0 commit comments

Comments
 (0)