Skip to content

Commit c28b741

Browse files
authored
fix: pdate to remove warnings
1 parent 1b77a20 commit c28b741

7 files changed

Lines changed: 579 additions & 563 deletions

File tree

.github/labeler.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
- changed-files:
1717
- any-glob-to-any-file:
1818
- ".prettierrc"
19-
- ".eslintrc.cjs"
19+
- "eslint.config.js"

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ jobs:
1919
id-token: write
2020
steps:
2121
- name: Checkout repo
22-
uses: actions/checkout@v4.2.2
22+
uses: actions/checkout@v4
2323
- name: Setup pnpm
2424
uses: pnpm/action-setup@v4
2525
- name: Setup Node
26-
uses: actions/setup-node@v4.3.0
26+
uses: actions/setup-node@v4
2727
with:
2828
node-version-file: ".nvmrc"
2929
cache: pnpm

.github/workflows/static.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: Checkout repo
24-
uses: actions/checkout@v4.2.2
24+
uses: actions/checkout@v4
2525
- name: Setup pnpm
2626
uses: pnpm/action-setup@v4
2727
- name: Setup Node
28-
uses: actions/setup-node@v4.3.0
28+
uses: actions/setup-node@v4
2929
with:
3030
node-version-file: ".nvmrc"
3131
cache: pnpm

package.json

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,30 +16,35 @@
1616
},
1717
"devDependencies": {
1818
"@changesets/cli": "^2.28.1",
19-
"@eslint/js": "^9.22.0",
20-
"@vitest/coverage-v8": "^3.0.9",
19+
"@eslint/js": "^9.23.0",
20+
"@vitest/coverage-v8": "^3.1.1",
2121
"@vitest/eslint-plugin": "^1.1.38",
22-
"eslint": "^9.22.0",
23-
"eslint-plugin-jsdoc": "^50.6.8",
24-
"eslint-plugin-n": "^17.16.2",
22+
"eslint": "^9.23.0",
23+
"eslint-plugin-jsdoc": "^50.6.9",
24+
"eslint-plugin-n": "^17.17.0",
2525
"eslint-plugin-promise": "^7.2.1",
2626
"msw": "^2.7.3",
2727
"prettier": "^3.5.3",
2828
"prettier-plugin-astro": "^0.14.1",
2929
"prettier-plugin-tailwindcss": "^0.6.11",
3030
"tsx": "^4.19.3",
3131
"typescript": "^5.8.2",
32-
"typescript-eslint": "^8.27.0",
33-
"vitest": "^3.0.9"
32+
"typescript-eslint": "^8.29.0",
33+
"vitest": "^3.1.1"
3434
},
3535
"engines": {
3636
"node": "^18.0.0 || ^20.0.0 || ^22.0.0",
3737
"pnpm": ">=8"
3838
},
3939
"pnpm": {
4040
"overrides": {
41-
"esbuild": "0.25.1"
42-
}
41+
"esbuild": "0.25.2"
42+
},
43+
"onlyBuiltDependencies": [
44+
"esbuild",
45+
"msw",
46+
"sharp"
47+
]
4348
},
44-
"packageManager": "pnpm@10.6.5+sha512.cdf928fca20832cd59ec53826492b7dc25dc524d4370b6b4adbf65803d32efaa6c1c88147c0ae4e8d579a6c9eec715757b50d4fa35eea179d868eada4ed043af"
49+
"packageManager": "pnpm@10.7.1+sha512.2d92c86b7928dc8284f53494fb4201f983da65f0fb4f0d40baafa5cf628fa31dae3e5968f12466f17df7e97310e30f343a648baea1b9b350685dafafffdf5808"
4550
}

packages/web/.astro/types.d.ts

Lines changed: 0 additions & 2 deletions
This file was deleted.

packages/web/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
},
1111
"dependencies": {
1212
"@astrojs/check": "^0.9.4",
13-
"@astrojs/starlight": "^0.32.3",
14-
"@astrojs/starlight-tailwind": "^3.0.0",
13+
"@astrojs/starlight": "^0.32.5",
14+
"@astrojs/starlight-tailwind": "^3.0.1",
1515
"@astrojs/tailwind": "5.1.5",
16-
"astro": "^5.5.3",
16+
"astro": "^5.5.6",
1717
"sharp": "^0.33.5",
1818
"tailwindcss": "3.4.17",
1919
"typescript": "^5.8.2"

0 commit comments

Comments
 (0)