html-validate 7.5.0 → 7.6.0
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/dist/cjs/browser.d.ts +1 -1
- package/dist/cjs/browser.js +5 -0
- package/dist/cjs/browser.js.map +1 -1
- package/dist/cjs/core.d.ts +52 -1
- package/dist/cjs/core.js +363 -130
- package/dist/cjs/core.js.map +1 -1
- package/dist/cjs/index.d.ts +2 -2
- package/dist/cjs/index.js +5 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/jest.d.ts +1 -1
- package/dist/cjs/test-utils.d.ts +1 -1
- package/dist/es/browser.d.ts +1 -1
- package/dist/es/browser.js +1 -1
- package/dist/es/cli.js +1 -1
- package/dist/es/core.d.ts +52 -1
- package/dist/es/core.js +355 -123
- package/dist/es/core.js.map +1 -1
- package/dist/es/html-validate.js +1 -1
- package/dist/es/index.d.ts +2 -2
- package/dist/es/index.js +1 -1
- package/dist/es/jest-lib.js +1 -1
- package/dist/es/jest.d.ts +1 -1
- package/dist/es/test-utils.d.ts +1 -1
- package/package.json +9 -9
package/dist/es/html-validate.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import path from 'path';
|
|
2
2
|
import kleur from 'kleur';
|
|
3
3
|
import minimist from 'minimist';
|
|
4
|
-
import {
|
|
4
|
+
import { t as name, v as version, e as SchemaValidationError, U as UserError, u as bugs } from './core.js';
|
|
5
5
|
import 'fs';
|
|
6
6
|
import 'ajv';
|
|
7
7
|
import 'deepmerge';
|
package/dist/es/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export { A as AttributeData,
|
|
1
|
+
import { s as Report, c as ConfigLoader, H as HtmlValidate, a as ConfigData } from './core.js';
|
|
2
|
+
export { A as AttributeData, a2 as AttributeEvent, f as CSSStyleDeclaration, af as CompatibilityOptions, a4 as ConditionalEvent, C as Config, a as ConfigData, b as ConfigError, c as ConfigLoader, Q as ConfigReadyEvent, a7 as DOMLoadEvent, a8 as DOMReadyEvent, x as DeferredMessage, a5 as DirectiveEvent, a6 as DoctypeEvent, D as DynamicValue, a1 as ElementReadyEvent, O as Event, K as EventCallback, E as EventDump, J as EventHandler, ab as FileSystemConfigLoader, ac as Formatter, e as HtmlElement, H as HtmlValidate, aa as ListenEventMap, L as Location, u as Message, m as MetaCopyableProperty, M as MetaData, j as MetaDataTable, k as MetaElement, l as MetaTable, i as NestedError, N as NodeClosed, G as Parser, F as Plugin, P as ProcessElementContext, s as Report, t as Reporter, w as Result, R as Rule, n as RuleDocumentation, h as SchemaValidationError, S as Severity, r as Source, V as SourceReadyEvent, d as StaticConfigLoader, $ as TagCloseEvent, _ as TagEndEvent, Z as TagOpenEvent, a0 as TagReadyEvent, Y as TagStartEvent, B as TemplateExtractor, q as TextClassification, T as TextNode, g as TokenDump, X as TokenEvent, y as TransformContext, z as Transformer, a9 as TriggerEventMap, U as UserError, a3 as WhitespaceEvent, W as WrappedError, o as classifyNodeText, ae as compatibilityCheck, p as configPresets, ad as formatterFactory, I as ruleExists, v as version } from './core.js';
|
|
3
3
|
import 'ajv';
|
|
4
4
|
|
|
5
5
|
interface ExpandOptions {
|
package/dist/es/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { C as Config, a as ConfigError, b as ConfigLoader, D as DynamicValue, E as EventHandler, F as FileSystemConfigLoader, d as HtmlElement, H as HtmlValidate, g as MetaCopyableProperty, M as MetaTable, f as NestedError, N as NodeClosed, P as Parser,
|
|
1
|
+
export { C as Config, a as ConfigError, b as ConfigLoader, D as DynamicValue, E as EventHandler, F as FileSystemConfigLoader, d as HtmlElement, H as HtmlValidate, g as MetaCopyableProperty, M as MetaTable, f as NestedError, N as NodeClosed, P as Parser, j as Reporter, R as Rule, e as SchemaValidationError, S as Severity, c as StaticConfigLoader, k as TemplateExtractor, i as TextClassification, T as TextNode, U as UserError, W as WrappedError, h as classifyNodeText, q as compatibilityCheck, p as configPresets, l as formatterFactory, r as ruleExists, v as version } from './core.js';
|
|
2
2
|
import 'fs';
|
|
3
3
|
export { C as CLI } from './cli.js';
|
|
4
4
|
import '@sidvind/better-ajv-errors';
|
package/dist/es/jest-lib.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import deepmerge from 'deepmerge';
|
|
2
|
-
import { F as FileSystemConfigLoader, H as HtmlValidate,
|
|
2
|
+
import { F as FileSystemConfigLoader, H as HtmlValidate, s as codeframe } from './core.js';
|
|
3
3
|
import kleur from 'kleur';
|
|
4
4
|
import { toMatchSnapshot, toMatchInlineSnapshot } from 'jest-snapshot';
|
|
5
5
|
import * as jestDiffDefault from 'jest-diff';
|
package/dist/es/jest.d.ts
CHANGED
package/dist/es/test-utils.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "html-validate",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.6.0",
|
|
4
4
|
"description": "Offline html5 validator",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"html",
|
|
@@ -156,9 +156,9 @@
|
|
|
156
156
|
},
|
|
157
157
|
"devDependencies": {
|
|
158
158
|
"@html-validate/commitlint-config": "3.0.6",
|
|
159
|
-
"@html-validate/eslint-config": "5.5.
|
|
160
|
-
"@html-validate/eslint-config-jest": "5.5.
|
|
161
|
-
"@html-validate/eslint-config-typescript": "5.5.
|
|
159
|
+
"@html-validate/eslint-config": "5.5.4",
|
|
160
|
+
"@html-validate/eslint-config-jest": "5.5.4",
|
|
161
|
+
"@html-validate/eslint-config-typescript": "5.5.4",
|
|
162
162
|
"@html-validate/eslint-config-typescript-typeinfo": "5.5.0",
|
|
163
163
|
"@html-validate/jest-config": "3.5.1",
|
|
164
164
|
"@html-validate/prettier-config": "2.3.0",
|
|
@@ -173,8 +173,8 @@
|
|
|
173
173
|
"@types/glob": "8.0.0",
|
|
174
174
|
"@types/jest": "29.0.3",
|
|
175
175
|
"@types/minimist": "1.2.2",
|
|
176
|
-
"@types/node": "14.18.
|
|
177
|
-
"@types/prompts": "2.
|
|
176
|
+
"@types/node": "14.18.31",
|
|
177
|
+
"@types/prompts": "2.4.1",
|
|
178
178
|
"@types/semver": "7.3.12",
|
|
179
179
|
"@types/stream-buffers": "3.0.4",
|
|
180
180
|
"babar": "0.2.3",
|
|
@@ -185,12 +185,12 @@
|
|
|
185
185
|
"jest-snapshot": "29.0.3",
|
|
186
186
|
"npm-pkg-lint": "1.11.1",
|
|
187
187
|
"npm-run-all": "4.1.5",
|
|
188
|
-
"rollup": "2.79.
|
|
188
|
+
"rollup": "2.79.1",
|
|
189
189
|
"rollup-plugin-copy": "3.4.0",
|
|
190
190
|
"rollup-plugin-dts": "4.2.2",
|
|
191
191
|
"stream-buffers": "3.0.2",
|
|
192
|
-
"ts-jest": "29.0.
|
|
193
|
-
"typescript": "4.8.
|
|
192
|
+
"ts-jest": "29.0.3",
|
|
193
|
+
"typescript": "4.8.4"
|
|
194
194
|
},
|
|
195
195
|
"peerDependencies": {
|
|
196
196
|
"jest": "^25.1 || ^26 || ^27.1 || ^28.1.3 || ^29.0.3",
|