Skip to content

Commit a49f2e4

Browse files
authored
Merge pull request #67 from falsepopsky/dev
feat: add support for new node.js version
2 parents 307a1ca + 6bc6234 commit a49f2e4

12 files changed

+5040
-4342
lines changed

.changeset/six-avocados-film.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@untidy/thetvdb": minor
3+
---
4+
5+
feat: support new node version 22.x

.changeset/three-laws-march.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
'@untidy/thetvdb': patch
3+
---
4+
5+
fix: update links from readme to new site.
6+
fix: remove links in jsdocs.

.github/workflows/cd.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
- main
66

77
env:
8-
PNPM_VERSION: 8.15.6
8+
PNPM_VERSION: 9.0.6
99

1010
jobs:
1111
lint:

.github/workflows/ci.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
- main
66

77
env:
8-
PNPM_VERSION: 8.15.6
8+
PNPM_VERSION: 9.0.6
99

1010
jobs:
1111
lint:
@@ -35,7 +35,7 @@ jobs:
3535
runs-on: ubuntu-latest
3636
strategy:
3737
matrix:
38-
node-version: ["18.19.0", "20.11.0"]
38+
node-version: ["18.19.0", "20.11.0", "22.0.0"]
3939
steps:
4040
- name: Checkout repo
4141
uses: actions/[email protected]

.github/workflows/release.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
- main
1010

1111
env:
12-
PNPM_VERSION: 8.15.6
12+
PNPM_VERSION: 9.0.6
1313

1414
jobs:
1515
release:

.github/workflows/static.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Setup pnpm
2626
uses: pnpm/[email protected]
2727
with:
28-
version: 8.15.6
28+
version: 9.0.6
2929
- name: Setup Node
3030
uses: actions/[email protected]
3131
with:

package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -16,26 +16,26 @@
1616
"devDependencies": {
1717
"@changesets/cli": "^2.27.1",
1818
"@types/node": "^20.12.7",
19-
"@vitest/coverage-v8": "^1.5.0",
19+
"@vitest/coverage-v8": "^1.5.3",
2020
"dotenv": "^16.4.5",
2121
"eslint": "^8.57.0",
2222
"eslint-config-untidy": "workspace:^",
23-
"msw": "^2.2.13",
23+
"msw": "^2.2.14",
2424
"prettier": "^3.2.5",
2525
"prettier-plugin-astro": "^0.13.0",
26-
"prettier-plugin-tailwindcss": "^0.5.13",
27-
"tsx": "^4.7.2",
26+
"prettier-plugin-tailwindcss": "^0.5.14",
27+
"tsx": "^4.8.0",
2828
"typescript": "^5.4.5",
29-
"vitest": "^1.5.0"
29+
"vitest": "^1.5.3"
3030
},
3131
"engines": {
32-
"node": "^18.17.0 || ^20.0.0",
33-
"pnpm": "^8"
32+
"node": "^18.17.0 || ^20.0.0 || ^22.0.0",
33+
"pnpm": "^9"
3434
},
3535
"pnpm": {
3636
"overrides": {
3737
"esbuild": "0.20.2"
3838
}
3939
},
40-
"packageManager": "pnpm@8.15.6+sha256.01c01eeb990e379b31ef19c03e9d06a14afa5250b82e81303f88721c99ff2e6f"
40+
"packageManager": "pnpm@9.0.6+sha256.0624e30eff866cdeb363b15061bdb7fd9425b17bc1bb42c22f5f4efdea21f6b3"
4141
}

packages/api/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ provides a simple and intuitive interface for querying multiple API endpoints.
1414
## ✨ Features
1515

1616
- Access multiple endpoints of the TheTVDB API
17-
[(check supported endpoints)](https://untidy-thetvdb.netlify.app/guides/supported-endpoints)
17+
[(check supported endpoints)](https://falsepopsky.github.io/thetvdb/guides/supported-endpoints/)
1818
- Built with TypeScript for full typing support
1919
- Uses the native `fetch` module from Node.js for making HTTP requests
2020
- ESM only
@@ -59,9 +59,9 @@ console.log(data);
5959

6060
## 📄 Docs
6161

62-
- [API](https://untidy-thetvdb.netlify.app/api)
63-
- [Supported endpoints](https://untidy-thetvdb.netlify.app/guides/supported-endpoints)
64-
- [Examples](https://untidy-thetvdb.netlify.app/guides/examples)
62+
- [API](https://falsepopsky.github.io/thetvdb/api/)
63+
- [Supported endpoints](https://falsepopsky.github.io/thetvdb/guides/supported-endpoints/)
64+
- [Examples](https://falsepopsky.github.io/thetvdb/guides/examples/)
6565

6666
## 📜 License
6767

packages/api/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"typescript": "^5.4.5"
3535
},
3636
"engines": {
37-
"node": "^18.17.0 || ^20.0.0"
37+
"node": "^18.17.0 || ^20.0.0 || ^22.0.0"
3838
},
3939
"repository": {
4040
"type": "git",

0 commit comments

Comments
 (0)