Skip to content

Commit

Permalink
[add] basic XML namespaces support (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
TechQuery authored Nov 7, 2024
1 parent 8777dfa commit 41a6fd2
Show file tree
Hide file tree
Showing 10 changed files with 297 additions and 244 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ node_modules/
package-lock.json
yarn.lock
/dist/
jsx-*runtime.*
/jsx-*runtime.*
docs/
.vscode/settings.json
25 changes: 17 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dom-renderer",
"version": "2.3.1",
"version": "2.4.0",
"license": "LGPL-3.0-or-later",
"author": "shiy2008@gmail.com",
"description": "A light-weight DOM Renderer supports Web components standard & TypeScript language",
Expand All @@ -25,40 +25,49 @@
"main": "dist/index.js",
"dependencies": {
"declarative-shadow-dom-polyfill": "^0.4.0",
"tslib": "^2.8.0",
"tslib": "^2.8.1",
"web-streams-polyfill": "^4.0.0",
"web-utility": "^4.4.1"
"web-utility": "^4.4.2"
},
"peerDependencies": {
"happy-dom": "^14"
},
"devDependencies": {
"@happy-dom/jest-environment": "^14.12.3",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.1",
"@types/node": "^20.17.6",
"happy-dom": "^14.12.3",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"open-cli": "^8.0.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typedoc": "^0.26.10",
"typedoc-plugin-mdn-links": "^3.3.4",
"typedoc": "^0.26.11",
"typedoc-plugin-mdn-links": "^3.3.6",
"typescript": "~5.6.3"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"tabWidth": 4
"tabWidth": 4,
"printWidth": 100
},
"lint-staged": {
"*.{md,json,yml,ts}": "prettier --write"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "@happy-dom/jest-environment"
"testEnvironment": "@happy-dom/jest-environment",
"transform": {
"\\.tsx?$": [
"ts-jest",
{
"tsconfig": "test/tsconfig.json"
}
]
}
},
"browserslist": "> 0.5%, last 2 versions, not dead, IE 11",
"scripts": {
Expand Down
Loading

0 comments on commit 41a6fd2

Please sign in to comment.