Skip to content

Commit d3cbeae

Browse files
authored
Update all dependencies (#400)
1 parent 39ffa4a commit d3cbeae

File tree

17 files changed

+3438
-3447
lines changed

17 files changed

+3438
-3447
lines changed

.changeset/little-planets-clean.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"next-yak": patch
3+
---
4+
5+
Updated all packages

.github/workflows/autofix.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Install Node.js
1818
uses: actions/setup-node@v3
1919
with:
20-
node-version: 20
20+
node-version: 22
2121

2222
- name: Install Rust
2323
uses: actions-rs/toolchain@v1
@@ -33,7 +33,7 @@ jobs:
3333
- uses: pnpm/action-setup@v4
3434
name: Install pnpm
3535
with:
36-
version: 9.12.3
36+
version: 10.15.0
3737
run_install: false
3838

3939
- name: Get pnpm store directory
@@ -61,4 +61,4 @@ jobs:
6161
- name: Benchmarks
6262
run: npx prettier --write "packages/benchmarks/**/*.{ts,tsx}" --ignore-path "packages/benchmarks/.prettierignore"
6363

64-
- uses: autofix-ci/action@d3e591514b99d0fca6779455ff8338516663f7cc
64+
- uses: autofix-ci/action@635ffb0c9798bd160680f18fd73371e355b85f27

.github/workflows/changeset.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ jobs:
1717
- name: Setup Node.js
1818
uses: actions/setup-node@v3
1919
with:
20-
node-version: "20.x"
20+
node-version: 22
2121

2222
- name: Install pnpm
2323
uses: pnpm/action-setup@v4
2424
with:
25-
version: 9.12.3
25+
version: 10.15.0
2626
run_install: true
2727

2828
- name: Check for changeset

.github/workflows/codspeed.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ jobs:
2727
- name: Install Node.js
2828
uses: actions/setup-node@v3
2929
with:
30-
node-version: 20
30+
node-version: 22
3131

3232
- uses: pnpm/action-setup@v4
3333
name: Install pnpm
3434
with:
35-
version: 9.12.3
35+
version: 10.15.0
3636
run_install: false
3737

3838
- name: Install Rust

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ jobs:
3939
- name: Install pnpm
4040
uses: pnpm/action-setup@v4
4141
with:
42-
version: 9.12.3
42+
version: 10.15.0
4343
run_install: false
4444

4545
- name: Install Node.js
4646
uses: actions/setup-node@v3
4747
with:
48-
node-version: 20
48+
node-version: 22
4949
cache: "pnpm"
5050

5151
- name: Install node_modules

.github/workflows/example.yml

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ env:
33
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
44
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
55
on:
6+
workflow_dispatch:
7+
inputs:
8+
pr_number:
9+
description: "Pull Request Number"
10+
required: true
11+
type: string
612
push:
713
branches:
814
- main
@@ -31,12 +37,12 @@ jobs:
3137
- uses: pnpm/action-setup@v4
3238
name: Install pnpm
3339
with:
34-
version: 9.12.3
40+
version: 10.15.0
3541
run_install: false
3642
- name: Install Node.js
3743
uses: actions/setup-node@v3
3844
with:
39-
node-version: 20
45+
node-version: 22
4046
cache: "pnpm"
4147
- name: Install node_modules
4248
run: pnpm install
@@ -70,27 +76,27 @@ jobs:
7076

7177
# Preview deployment (for pull requests and non-main pushes)
7278
- name: Pull Vercel environment information (Preview)
73-
if: github.event_name == 'pull_request_target' || (github.event_name == 'push' && github.ref != 'refs/heads/main')
79+
if: github.event_name == 'pull_request_target' || github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && github.ref != 'refs/heads/main')
7480
run: vercel pull --yes --environment=preview --token ${{ secrets.VERCEL_TOKEN }}
7581
- name: Build project artifacts (Preview)
76-
if: github.event_name == 'pull_request_target' || (github.event_name == 'push' && github.ref != 'refs/heads/main')
82+
if: github.event_name == 'pull_request_target' || github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && github.ref != 'refs/heads/main')
7783
run: vercel build --token ${{ secrets.VERCEL_TOKEN }}
7884
- name: Deploy to Vercel (Preview)
7985
id: deploy-preview
80-
if: github.event_name == 'pull_request_target' || (github.event_name == 'push' && github.ref != 'refs/heads/main')
86+
if: github.event_name == 'pull_request_target' || github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && github.ref != 'refs/heads/main')
8187
run: |
8288
DEPLOYMENT_URL=$(vercel deploy --prebuilt --token ${{ secrets.VERCEL_TOKEN }})
8389
echo "deployment_url=$DEPLOYMENT_URL" >> $GITHUB_OUTPUT
8490
- name: Find Documentation Comment
8591
uses: peter-evans/find-comment@v3
8692
id: find-comment
87-
if: github.event_name == 'pull_request_target'
93+
if: github.event_name == 'pull_request_target' || github.event_name == 'workflow_dispatch'
8894
with:
8995
issue-number: ${{ github.event.number }}
9096
comment-author: "github-actions[bot]"
9197
body-includes: "🧪 Example App Preview Deployed!"
9298
- name: Create or Update Documentation Comment
93-
if: github.event_name == 'pull_request_target'
99+
if: github.event_name == 'pull_request_target' || github.event_name == 'workflow_dispatch'
94100
uses: peter-evans/create-or-update-comment@v4
95101
with:
96102
comment-id: ${{ steps.find-comment.outputs.comment-id }}

.github/workflows/node.js.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ jobs:
2727
- name: Install Node.js
2828
uses: actions/setup-node@v3
2929
with:
30-
node-version: 20
30+
node-version: 22
3131

3232
- uses: pnpm/action-setup@v4
3333
name: Install pnpm
3434
with:
35-
version: 9.12.3
35+
version: 10.15.0
3636
run_install: false
3737

3838
- name: Install Rust

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ jobs:
2020
- name: Install Node.js
2121
uses: actions/setup-node@v3
2222
with:
23-
node-version: 20
23+
node-version: 22
2424

2525
- uses: pnpm/action-setup@v4
2626
name: Install pnpm
2727
with:
28-
version: 9.12.3
28+
version: 10.15.0
2929
run_install: false
3030

3131
- name: Install Rust

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@
2020
"release": "pnpm run --filter=next-yak build && pnpm run --filter=yak-swc build && changeset publish"
2121
},
2222
"engines": {
23-
"node": ">=20"
23+
"node": ">=22"
2424
},
2525
"pnpm": {
2626
"overrides": {
2727
"yak-swc": "workspace:*"
2828
}
2929
},
30-
"packageManager": "pnpm@9.12.3",
30+
"packageManager": "pnpm@10.15.0",
3131
"author": "Jan Nicklas",
3232
"license": "MIT",
3333
"devDependencies": {

packages/docs/app/(home)/playground/page.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import DynamicEditor from "@/components/editor";
2-
import "./playground.css";
32
import { decompressWithDictionary } from "@/components/compress";
43
import { examples } from "./examples";
54

0 commit comments

Comments
 (0)