Skip to content

Commit 010fea4

Browse files
authored
chore: update dependencies (#353)
1 parent 2acaa4e commit 010fea4

File tree

4 files changed

+844
-353
lines changed

4 files changed

+844
-353
lines changed

.github/workflows/deploy.yaml

+5-6
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,13 @@ jobs:
2121
- name: Checkout your repository using git
2222
uses: actions/checkout@v4
2323

24-
# TODO: pull node version from .node-version file
2524
- uses: actions/setup-node@v4
2625
with:
27-
node-version: "18"
26+
node-version-file: ".node-version"
2827
cache: "yarn"
2928
- run: yarn install
3029
- run: yarn build
31-
- uses: actions/upload-pages-artifact@v2
30+
- uses: actions/upload-pages-artifact@v3
3231
with:
3332
path: "dist/"
3433

@@ -42,7 +41,7 @@ jobs:
4241
steps:
4342
- name: Deploy to GitHub Pages
4443
id: deployment
45-
uses: actions/deploy-pages@v2
44+
uses: actions/deploy-pages@v4
4645

4746
e2e:
4847
needs: [deploy]
@@ -53,13 +52,13 @@ jobs:
5352
with:
5453
browser: chrome
5554

56-
- uses: actions/upload-artifact@v3
55+
- uses: actions/upload-artifact@v4
5756
if: failure()
5857
with:
5958
name: cypress-screenshots
6059
path: cypress/screenshots
6160

62-
- uses: actions/upload-artifact@v3
61+
- uses: actions/upload-artifact@v4
6362
if: always()
6463
with:
6564
name: cypress-videos

package.json

+5-7
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
"private": true,
55
"scripts": {
66
"dev": "astro dev",
7-
"start": "astro dev",
87
"build": "astro build",
98
"preview": "astro preview",
109
"astro": "astro",
@@ -18,17 +17,16 @@
1817
"@astrojs/sitemap": "^3.0.0",
1918
"@astrojs/tailwind": "^5.0.0",
2019
"@tailwindcss/typography": "^0.5.10",
21-
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
2220
"astro": "^3.1.2",
2321
"astro-icon": "^0.8.1",
24-
"cypress": "^13.2.0",
22+
"cypress": "^14.3.0",
2523
"mdast-util-to-string": "^4.0.0",
26-
"prettier": "^3.0.3",
24+
"prettier": "^3.5.3",
2725
"reading-time": "^1.5.0",
2826
"rehype-pretty-code": "^0.10.1",
29-
"sharp": "^0.32.6",
30-
"tailwindcss": "^3.3.3",
31-
"typescript": "^5.2.2"
27+
"sharp": "^0.34.1",
28+
"tailwindcss": "^3.4.17",
29+
"typescript": "^5.8.3"
3230
},
3331
"packageManager": "yarn@3.6.3"
3432
}

prettier.config.js

-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,4 @@ module.exports = {
44
trailingComma: "es5",
55
singleQuote: false,
66
semi: true,
7-
importOrder: ["^[./]"],
8-
importOrderSeparation: true,
9-
importOrderSortSpecifiers: true,
107
};

0 commit comments

Comments
 (0)