Skip to content

Commit 41a6fd2

Browse files
authored
[add] basic XML namespaces support (#9)
1 parent 8777dfa commit 41a6fd2

File tree

10 files changed

+297
-244
lines changed

10 files changed

+297
-244
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ node_modules/
22
package-lock.json
33
yarn.lock
44
/dist/
5-
jsx-*runtime.*
5+
/jsx-*runtime.*
66
docs/
77
.vscode/settings.json

package.json

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dom-renderer",
3-
"version": "2.3.1",
3+
"version": "2.4.0",
44
"license": "LGPL-3.0-or-later",
55
"author": "[email protected]",
66
"description": "A light-weight DOM Renderer supports Web components standard & TypeScript language",
@@ -25,40 +25,49 @@
2525
"main": "dist/index.js",
2626
"dependencies": {
2727
"declarative-shadow-dom-polyfill": "^0.4.0",
28-
"tslib": "^2.8.0",
28+
"tslib": "^2.8.1",
2929
"web-streams-polyfill": "^4.0.0",
30-
"web-utility": "^4.4.1"
30+
"web-utility": "^4.4.2"
3131
},
3232
"peerDependencies": {
3333
"happy-dom": "^14"
3434
},
3535
"devDependencies": {
3636
"@happy-dom/jest-environment": "^14.12.3",
3737
"@types/jest": "^29.5.14",
38-
"@types/node": "^20.17.1",
38+
"@types/node": "^20.17.6",
3939
"happy-dom": "^14.12.3",
4040
"husky": "^9.1.6",
4141
"jest": "^29.7.0",
4242
"lint-staged": "^15.2.10",
4343
"open-cli": "^8.0.0",
4444
"prettier": "^3.3.3",
4545
"ts-jest": "^29.2.5",
46-
"typedoc": "^0.26.10",
47-
"typedoc-plugin-mdn-links": "^3.3.4",
46+
"typedoc": "^0.26.11",
47+
"typedoc-plugin-mdn-links": "^3.3.6",
4848
"typescript": "~5.6.3"
4949
},
5050
"prettier": {
5151
"singleQuote": true,
5252
"trailingComma": "none",
5353
"arrowParens": "avoid",
54-
"tabWidth": 4
54+
"tabWidth": 4,
55+
"printWidth": 100
5556
},
5657
"lint-staged": {
5758
"*.{md,json,yml,ts}": "prettier --write"
5859
},
5960
"jest": {
6061
"preset": "ts-jest",
61-
"testEnvironment": "@happy-dom/jest-environment"
62+
"testEnvironment": "@happy-dom/jest-environment",
63+
"transform": {
64+
"\\.tsx?$": [
65+
"ts-jest",
66+
{
67+
"tsconfig": "test/tsconfig.json"
68+
}
69+
]
70+
}
6271
},
6372
"browserslist": "> 0.5%, last 2 versions, not dead, IE 11",
6473
"scripts": {

0 commit comments

Comments
 (0)