Skip to content

Commit 7a560f9

Browse files
committed
misc
1 parent 354024b commit 7a560f9

File tree

8 files changed

+17
-76
lines changed

8 files changed

+17
-76
lines changed

.github/actions/setup-node-pnpm/action.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
name: 'Setup Node.js and pnpm'
2-
description: 'Setup Node.js and pnpm with caching'
1+
name: "Setup Node.js and pnpm"
2+
description: "Setup Node.js and pnpm with caching"
33
inputs:
44
node-version:
5-
description: 'Node.js version to use'
5+
description: "Node.js version to use"
66
required: false
7-
default: '22.18.0'
7+
default: "22.18.0"
88
pnpm-version:
9-
description: 'pnpm version to use'
9+
description: "pnpm version to use"
1010
required: false
11-
default: '10.14.0'
11+
default: "10.14.0"
1212

1313
runs:
14-
using: 'composite'
14+
using: "composite"
1515
steps:
1616
- name: Setup PNPM
1717
uses: pnpm/action-setup@v4
@@ -23,7 +23,7 @@ runs:
2323
uses: actions/setup-node@v4
2424
with:
2525
node-version: ${{ inputs.node-version }}
26-
cache: 'pnpm'
26+
cache: "pnpm"
2727

2828
- name: Install dependencies
2929
shell: bash

.github/workflows/setup-node-pnpm.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ on:
44
workflow_call:
55
inputs:
66
node-version:
7-
description: 'Node.js version to use'
7+
description: "Node.js version to use"
88
required: false
99
type: string
10-
default: '22.18.0'
10+
default: "22.18.0"
1111
pnpm-version:
12-
description: 'pnpm version to use'
12+
description: "pnpm version to use"
1313
required: false
1414
type: string
15-
default: '10.14.0'
15+
default: "10.14.0"
1616

1717
jobs:
1818
setup:
@@ -30,7 +30,7 @@ jobs:
3030
uses: actions/setup-node@v4
3131
with:
3232
node-version: ${{ inputs.node-version }}
33-
cache: 'pnpm'
33+
cache: "pnpm"
3434

3535
- name: Install dependencies
3636
run: pnpm install --frozen-lockfile

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
"build:content": "node scripts/generateContent.ts --no-cache",
1818
"build:progress": "node scripts/generateReadMeProgress.ts",
1919
"build:sitemap": "node scripts/generateSitemap.ts",
20-
"test:content-hook": "node scripts/checkContentChanges.ts",
2120
"prepare": "lefthook install",
2221
"test:e2e": "playwright test",
2322
"test:e2e:ui": "playwright test --ui",

public/manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"purpose": "any maskable"
1919
},
2020
{
21-
"src": "/favicon.png",
21+
"src": "/favicon.png",
2222
"sizes": "512x512",
2323
"type": "image/png",
2424
"purpose": "any maskable"
@@ -48,7 +48,7 @@
4848
},
4949
{
5050
"name": "React vs Angular",
51-
"short_name": "React vs Angular",
51+
"short_name": "React vs Angular",
5252
"description": "Compare React and Angular frameworks",
5353
"url": "/?f=react,angularRenaissance",
5454
"icons": [
@@ -61,7 +61,7 @@
6161
{
6262
"name": "Vue vs Svelte",
6363
"short_name": "Vue vs Svelte",
64-
"description": "Compare Vue.js and Svelte frameworks",
64+
"description": "Compare Vue.js and Svelte frameworks",
6565
"url": "/?f=vue3,svelte5",
6666
"icons": [
6767
{

scripts/checkContentChanges.ts

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

test/e2e/framework-comparison.test.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,6 @@ test.describe("Framework Comparison", () => {
8989

9090
// If no error snippets found, let's check what's actually rendered
9191
if (errorCount === 0) {
92-
const loadingSnippets = page.locator('[data-testid*="loading-snippet"]');
93-
const loadingCount = await loadingSnippets.count();
94-
9592
// For now, let's just verify that Angular was selected and the test completed
9693
const selectedFrameworks = await page.getAttribute(
9794
"[data-framework-id-selected-list]",

test/e2e/home.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ test.describe("Homepage", () => {
2828
expect(selectedFrameworks).toContain("svelte5");
2929
});
3030

31-
test("should allow toggling framework selection", async ({ page }) => {
31+
test("should allow toggling framework selection", async () => {
3232
// Wait for frameworks to load
3333
await testHelpers.waitForFrameworksToLoad();
3434

vite.config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import generateSitemap from "./scripts/generateSitemap";
1010
import { svelteInspector } from "@sveltejs/vite-plugin-svelte-inspector";
1111
import tailwindcss from "@tailwindcss/vite";
1212
import { FRAMEWORK_SEPARATOR } from "./src/constants.ts";
13-
// @TODO: sitemap
1413

1514
// Helper function to create framework comparison URLs
1615
const createFrameworkUrl = (frameworks: string[]) =>

0 commit comments

Comments
 (0)