Skip to content

Commit 68067eb

Browse files
committed
[fix] URL Data parsing with Hash routes
[optimize] upgrade to Node.js 22 & other latest Upstream packages
1 parent f91af68 commit 68067eb

File tree

6 files changed

+1351
-1543
lines changed

6 files changed

+1351
-1543
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
version: 9
1818
- uses: actions/setup-node@v4
1919
with:
20-
node-version: 20
20+
node-version: 22
2121
registry-url: https://registry.npmjs.org
2222
cache: pnpm
2323
- name: Install Dependencies

.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: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web-utility",
3-
"version": "4.4.2",
3+
"version": "4.4.3",
44
"license": "LGPL-3.0",
55
"author": "[email protected]",
66
"description": "Web front-end toolkit based on TypeScript",
@@ -24,33 +24,33 @@
2424
"main": "dist/index.js",
2525
"module": "dist/index.esm.js",
2626
"dependencies": {
27-
"@swc/helpers": "^0.5.13",
28-
"element-internals-polyfill": "^1.3.12",
27+
"@swc/helpers": "^0.5.15",
28+
"element-internals-polyfill": "^1.3.13",
2929
"regenerator-runtime": "^0.14.1"
3030
},
3131
"peerDependencies": {
3232
"typescript": ">=4.1"
3333
},
3434
"devDependencies": {
35-
"@parcel/packager-ts": "~2.12.0",
36-
"@parcel/transformer-typescript-types": "~2.12.0",
35+
"@parcel/packager-ts": "~2.13.3",
36+
"@parcel/transformer-typescript-types": "~2.13.3",
3737
"@peculiar/webcrypto": "^1.5.0",
3838
"@types/jest": "^29.5.14",
39-
"@types/node": "^20.17.6",
39+
"@types/node": "^22.13.4",
4040
"@webcomponents/webcomponentsjs": "^2.8.0",
41-
"core-js": "^3.39.0",
42-
"husky": "^9.1.6",
41+
"core-js": "^3.40.0",
42+
"husky": "^9.1.7",
4343
"intersection-observer": "^0.12.2",
4444
"jest": "^29.7.0",
4545
"jest-environment-jsdom": "^29.7.0",
46-
"lint-staged": "^15.2.10",
46+
"lint-staged": "^15.4.3",
4747
"open-cli": "^8.0.0",
48-
"parcel": "~2.12.0",
49-
"prettier": "^3.3.3",
48+
"parcel": "~2.13.3",
49+
"prettier": "^3.5.1",
5050
"ts-jest": "^29.2.5",
51-
"typedoc": "^0.26.11",
52-
"typedoc-plugin-mdn-links": "^3.3.6",
53-
"typescript": "~5.6.3"
51+
"typedoc": "^0.27.7",
52+
"typedoc-plugin-mdn-links": "^4.0.13",
53+
"typescript": "~5.7.3"
5454
},
5555
"prettier": {
5656
"singleQuote": true,

0 commit comments

Comments
 (0)