html-crush 5.0.7 → 5.0.10
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.
- package/CHANGELOG.md +18 -0
- package/README.md +4 -1
- package/dist/html-crush.esm.js +16 -893
- package/dist/html-crush.umd.js +68 -41
- package/examples/_quickTake.js +2 -0
- package/package.json +27 -88
- package/types/index.d.ts +0 -1
- package/examples/api.json +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,24 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## 5.0.10 (2021-12-24)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- add missing extension ([147bd6e](https://github.com/codsen/codsen/commit/147bd6ec2a2d44c09749f0fba0ca3e3d9c52da94))
|
|
11
|
+
|
|
12
|
+
## 5.0.9 (2021-12-24)
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
- add missing extension ([147bd6e](https://github.com/codsen/codsen/commit/147bd6ec2a2d44c09749f0fba0ca3e3d9c52da94))
|
|
17
|
+
|
|
18
|
+
## 5.0.8 (2021-12-24)
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
- add missing extension ([147bd6e](https://github.com/codsen/codsen/commit/147bd6ec2a2d44c09749f0fba0ca3e3d9c52da94))
|
|
23
|
+
|
|
6
24
|
## 5.0.0 (2021-09-09)
|
|
7
25
|
|
|
8
26
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -38,6 +38,7 @@ If you need a legacy version which works with `require`, use version 4.2.0
|
|
|
38
38
|
|
|
39
39
|
```js
|
|
40
40
|
import { strict as assert } from "assert";
|
|
41
|
+
|
|
41
42
|
import { crush, defaults, version } from "html-crush";
|
|
42
43
|
|
|
43
44
|
assert.equal(
|
|
@@ -58,7 +59,7 @@ assert.equal(
|
|
|
58
59
|
|
|
59
60
|
## Documentation
|
|
60
61
|
|
|
61
|
-
Please [visit codsen.com](https://codsen.com/os/html-crush/) for a full description of the API
|
|
62
|
+
Please [visit codsen.com](https://codsen.com/os/html-crush/) for a full description of the API.
|
|
62
63
|
|
|
63
64
|
## Contributing
|
|
64
65
|
|
|
@@ -70,4 +71,6 @@ MIT License
|
|
|
70
71
|
|
|
71
72
|
Copyright (c) 2010-2021 Roy Revelt and other contributors
|
|
72
73
|
|
|
74
|
+
|
|
73
75
|
<img src="https://codsen.com/images/png-codsen-ok.png" width="98" alt="ok" align="center"> <img src="https://codsen.com/images/png-codsen-1.png" width="148" alt="codsen" align="center"> <img src="https://codsen.com/images/png-codsen-star-small.png" width="32" alt="star" align="center">
|
|
76
|
+
|