happy-dom 10.0.0 → 10.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of happy-dom might be problematic. Click here for more details.

Files changed (2) hide show
  1. package/README.md +6 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -38,7 +38,8 @@ And much more..
38
38
 
39
39
  ### Module Systems
40
40
 
41
- [Happy DOM](https://github.com/capricorn86/happy-dom) has support for both [ESM](https://nodejs.org/api/esm.html#introduction) and [CommonJS](https://nodejs.org/api/modules.html#modules-commonjs-modules).
41
+ - [ESM](https://nodejs.org/api/esm.html#introduction)
42
+ - [CommonJS](https://nodejs.org/api/modules.html#modules-commonjs-modules)
42
43
 
43
44
  # Installation
44
45
 
@@ -71,7 +72,9 @@ container.appendChild(button);
71
72
  console.log(document.body.innerHTML);
72
73
  ```
73
74
 
74
- [Read more in our documentation](https://github.com/capricorn86/happy-dom/wiki)
75
+ # Documentation
76
+
77
+ Read more about how to use Happy DOM in our [Wiki](https://github.com/capricorn86/happy-dom/wiki).
75
78
 
76
79
  # Performance
77
80
 
@@ -87,7 +90,7 @@ console.log(document.body.innerHTML);
87
90
  | querySelectorAll('[class~="name"]') | 5.5 ms | 2.9 ms |
88
91
  | querySelectorAll(':nth-child(2n+1)') | 10.4 ms | 3.8 ms |
89
92
 
90
- [See how the test was done here](https://github.com/capricorn86/happy-dom-performance-test)
93
+ See how the test was done [here](https://github.com/capricorn86/happy-dom-performance-test)
91
94
 
92
95
  # Jest
93
96
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "happy-dom",
3
- "version": "10.0.0",
3
+ "version": "10.0.2",
4
4
  "license": "MIT",
5
5
  "homepage": "https://github.com/capricorn86/happy-dom",
6
6
  "repository": "https://github.com/capricorn86/happy-dom",