Skip to content

Commit 27c647f

Browse files
Bump @types/cheerio from 0.22.35 to 1.0.0 (#136)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Miguel Palhas <mpalhas@gmail.com>
1 parent 10e059d commit 27c647f

4 files changed

Lines changed: 15 additions & 12 deletions

File tree

.github/workflows/node.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,12 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- uses: actions/checkout@v4
26-
- run: corepack enable yarn
26+
- uses: pnpm/action-setup@v4
27+
with:
28+
version: 10
2729
- uses: actions/setup-node@v4
2830
with:
29-
cache: "pnppm"
31+
cache: "pnpm"
3032
node-version: "22"
3133

3234
- run: pnpm install --frozen-lockfile

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
"dev": "vite dev --port 3000",
77
"build": "vite build",
88
"start": "node .output/server/index.mjs",
9-
"lint": "tsc lint:biome && tsc lint:tsc && tsc lint:unused",
9+
"lint": "pnpm run lint:biome && pnpm run lint:tsc && pnpm run lint:unused",
1010
"lint:biome": "biome check .",
1111
"lint:tsc": "pnpm --package=typescript dlx tsc --noEmit",
1212
"lint:unused": "ts-unused-exports tsconfig.json --excludePathsFromReport='vite.config.ts;routeTree.gen.ts;loggingMiddleware.tsx;app.config;__root.tsx;router.tsx'",
13-
"fix": "tsc fix:biome",
13+
"fix": "pnpm run fix:biome",
1414
"fix:biome": "biome check --write .",
1515
"gen:seo-images": "tsx scripts/generate-seo-images.ts"
1616
},
@@ -66,7 +66,7 @@
6666
"@tailwindcss/postcss": "^4.1.13",
6767
"@tailwindcss/vite": "^4.1.13",
6868
"@tanstack/router-plugin": "^1.132.7",
69-
"@types/cheerio": "^0.22.35",
69+
"@types/cheerio": "^1.0.0",
7070
"@types/lodash-es": "^4.17.12",
7171
"@types/node": "^22.18.6",
7272
"@types/react": "^19.1.14",

pnpm-lock.yaml

Lines changed: 7 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/routes/docs/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ export const Route = createFileRoute("/docs/")({
55
redirect({
66
to: "/docs/$section/$subsection",
77
params: { section: "getting-started", subsection: "what-is-ethui" },
8-
})
8+
}),
99
});

0 commit comments

Comments
 (0)