Skip to content

Commit cfeb111

Browse files
committed
Merge #206: chore(deps): update project dependencies to latest versions
4846d95 review: address Copilot PR review comments (Jose Celano) 349b116 ci: bump actions/checkout to v6 and actions/upload-pages-artifact to v5 (Jose Celano) d7a54a9 chore(deps): update project dependencies to latest versions (Jose Celano) Pull request description: ## Summary Updates all project dependencies to their latest versions. ### Within-range updates (`npm update`) - `@eslint/compat` 2.0.5 → 2.1.0 - `@eslint/js` 10.0.1 → 10.0.1 (unchanged) - `@fontsource-variable/roboto-mono` 5.2.8 → 5.2.9 - `@iconify/svelte` 5.2.1 → 5.2.2 - `@sveltejs/kit` 2.57.1 → 2.65.1 - `@sveltejs/vite-plugin-svelte` 7.0.0 → 7.1.2 - `@tailwindcss/typography` 0.5.19 → 0.5.20 - `@tailwindcss/vite` 4.2.2 → 4.3.1 - `@types/node` 25.6.0 → 25.9.3 - `@typescript-eslint/eslint-plugin` 8.58.2 → 8.61.0 - `@typescript-eslint/parser` 8.58.2 → 8.61.0 - `eslint` 10.2.0 → 10.5.0 - `eslint-plugin-prettier` 5.5.5 → 5.5.6 - `eslint-plugin-svelte` 3.17.0 → 3.19.0 - `globals` 17.5.0 → 17.6.0 - `prettier` 3.8.2 → 3.8.4 - `sass` 1.99.0 → 1.101.0 - `svelte` 5.55.4 → 5.56.3 - `svelte-check` 4.4.6 → 4.6.0 - `svelte-eslint-parser` 1.6.0 → 1.8.0 - `tailwindcss` 4.2.2 → 4.3.1 - `tsx` 4.21.0 → 4.22.4 - `typescript` 6.0.2 → 6.0.3 - `typescript-eslint` 8.58.2 → 8.61.0 - `vite` 8.0.8 → 8.0.16 ### Major version bumps | Package | Before | After | |---------|--------|-------| | `prettier-plugin-svelte` | ^3.5.1 | ^4.1.0 | | `prettier-plugin-tailwindcss` | ^0.7.2 | ^0.8.0 | | `svelte-sitemap` | ^3.1.0 | ^4.0.3 | ### Verification - `npm run check` — 0 errors, 0 warnings - `npm run lint` — all files pass - `npm run build` — builds successfully - All pre-commit hooks pass ACKs for top commit: josecelano: ACK 4846d95 Tree-SHA512: d3412442d6ede635c163e4c586f5a28211024a9f1f95cb1c9e4188c0305a6ced7b48fb9d686308350e5e7180438f6246fa321fb037414f3e1a4754fb97cd080b
2 parents 9746f0e + 4846d95 commit cfeb111

4 files changed

Lines changed: 692 additions & 621 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,12 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
17+
18+
- name: Setup Node
19+
uses: actions/setup-node@v4
20+
with:
21+
node-version-file: package.json
1722

1823
- name: Install dependencies
1924
run: npm install
@@ -24,7 +29,7 @@ jobs:
2429
touch build/.nojekyll
2530
2631
- name: Upload Artifacts
27-
uses: actions/upload-pages-artifact@v4
32+
uses: actions/upload-pages-artifact@v5
2833
with:
2934
# this should match the `pages` option in your adapter-static options
3035
path: 'build/'

.github/workflows/test.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,12 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v6
14+
15+
- name: Setup Node
16+
uses: actions/setup-node@v4
17+
with:
18+
node-version-file: package.json
1419

1520
- name: Enable Package Managers
1621
run: corepack enable

0 commit comments

Comments
 (0)