fix(deps): update dependency html-validate to v5
This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
html-validate (source) | peerDependencies | major | ^2.17.0 || ^3.0.0 || ^4.0.0 -> ^2.17.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 |
html-validate (source) | devDependencies | major | 4.14.0 -> 5.0.1 |
Release Notes
html-validate/html-validate
v5.0.1
v5.0.0

BREAKING CHANGES

- the library is now shipped as a hybrid CJS/ESM package. If you are simply consuming the CLI tool or one of the existing integrations this will not affect you.
For plugin developers and if you consume the API in any way the biggest change is that the distributed source is now bundled and you can no longer access individual files.
Typically something like:
-import foo from "html-validate/dist/foo";
+import { foo } from "html-validate"
Feel free to open an issue if some symbol you need isn't exported.
If your usage includes checking presence of rules use the ruleExists
helper:
-try {
- require("html-validate/dist/rules/attr-case");
-} catch (err) {
- /* fallback */
-}
+import { ruleExists } from "html-validate";
+if (!ruleExists("attr-case")) {
+ /* fallback */
+}
- drop support for NodeJS 10
Features
- add
compatibilityCheck
helper for plugins (4758595) - cjs/esm hybrid package (39c960a), closes #112
- drop support for NodeJS 10 (8f74291)
Dependency upgrades
- deps: update dependency ajv to v8 (cccb73a)
Configuration
-
If you want to rebase/retry this MR, check this box.
This MR has been generated by Renovate Bot.
Merge request reports
Activity
added renovate label
added 2 commits
added 2 commits
added 3 commits
-
544e97b6...c9404dd3 - 2 commits from branch
master
- ba5fe2f2 - fix(deps): update dependency html-validate to v5
-
544e97b6...c9404dd3 - 2 commits from branch
added 2 commits
added 3 commits
-
e0caf922...d0c45f17 - 2 commits from branch
master
- eed891b8 - fix(deps): update dependency html-validate to v5
-
e0caf922...d0c45f17 - 2 commits from branch
added 1 commit
- d15f86c8 - fix(deps): update dependency html-validate to v5
added 1 commit
- 09ccb62c - fix(deps): update dependency html-validate to v5
added 1 commit
- 05e591f8 - fix(deps): update dependency html-validate to v5
added 1 commit
- 09ccb62c - fix(deps): update dependency html-validate to v5
added 1 commit
- 9d7076c0 - fix(deps): update dependency html-validate to v5
mentioned in commit 3c7b0148