Skip to content

Commit 2fc40ce

Browse files
committed
[fix] http-equiv attribute of Meta tag
[optimize] upgrade to Node.js 22 & other latest Upstream packages
1 parent ddc4523 commit 2fc40ce

File tree

6 files changed

+435
-641
lines changed

6 files changed

+435
-641
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
- uses: actions/setup-node@v4
2020
with:
21-
node-version: 20
21+
node-version: 22
2222
registry-url: https://registry.npmjs.org
2323
cache: pnpm
2424

.vscode/extensions.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"esbenp.prettier-vscode",
1010
"eamodio.gitlens",
1111
"github.vscode-pull-request-github",
12-
"github.vscode-github-actions"
12+
"github.vscode-github-actions",
13+
"github.copilot"
1314
]
1415
}

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dom-renderer",
3-
"version": "2.6.1",
3+
"version": "2.6.2",
44
"license": "LGPL-3.0-or-later",
55
"author": "[email protected]",
66
"description": "A light-weight DOM Renderer supports Web components standard & TypeScript language",
@@ -27,26 +27,26 @@
2727
"declarative-shadow-dom-polyfill": "^0.4.0",
2828
"scheduler-polyfill": "^1.3.0",
2929
"tslib": "^2.8.1",
30-
"web-streams-polyfill": "^4.0.0",
31-
"web-utility": "^4.4.2"
30+
"web-streams-polyfill": "^4.1.0",
31+
"web-utility": "^4.4.3"
3232
},
3333
"peerDependencies": {
3434
"happy-dom": "^14"
3535
},
3636
"devDependencies": {
3737
"@happy-dom/jest-environment": "^14.12.3",
3838
"@types/jest": "^29.5.14",
39-
"@types/node": "^20.17.7",
39+
"@types/node": "^22.13.5",
4040
"happy-dom": "^14.12.3",
4141
"husky": "^9.1.7",
4242
"jest": "^29.7.0",
43-
"lint-staged": "^15.2.10",
43+
"lint-staged": "^15.4.3",
4444
"open-cli": "^8.0.0",
45-
"prettier": "^3.3.3",
46-
"ts-jest": "^29.2.5",
47-
"typedoc": "^0.26.11",
48-
"typedoc-plugin-mdn-links": "^4.0.1",
49-
"typescript": "~5.7.2"
45+
"prettier": "^3.5.2",
46+
"ts-jest": "^29.2.6",
47+
"typedoc": "^0.27.9",
48+
"typedoc-plugin-mdn-links": "^4.0.14",
49+
"typescript": "~5.7.3"
5050
},
5151
"prettier": {
5252
"singleQuote": true,

0 commit comments

Comments
 (0)