@markuplint/ml-spec
Advanced tools
Comparing version 4.0.0-alpha.9 to 4.0.0-alpha.10
@@ -7,3 +7,3 @@ import type { MLMLSpec, Attribute } from '../types/index.js'; | ||
}; | ||
export declare function nameCompare(a: HasName | string, b: HasName | string): 1 | -1 | 0; | ||
export declare function nameCompare(a: HasName | string, b: HasName | string): 0 | 1 | -1; | ||
export {}; |
@@ -1,1 +0,3 @@ | ||
export declare function isVoidElement(el: Element): boolean; | ||
export declare function isVoidElement(el: { | ||
readonly localName: string; | ||
}): boolean; |
@@ -19,6 +19,4 @@ /** | ||
]); | ||
export function isVoidElement( | ||
// eslint-disable-next-line @typescript-eslint/prefer-readonly-parameter-types | ||
el) { | ||
export function isVoidElement(el) { | ||
return voidElements.has(el.localName); | ||
} |
{ | ||
"name": "@markuplint/ml-spec", | ||
"version": "4.0.0-alpha.9", | ||
"version": "4.0.0-alpha.10", | ||
"description": "Types and schema that specs of the Markup languages for markuplint", | ||
@@ -35,13 +35,13 @@ "repository": "git@github.com:markuplint/markuplint.git", | ||
"dependencies": { | ||
"@markuplint/ml-ast": "4.0.0-alpha.9", | ||
"@markuplint/types": "4.0.0-alpha.9", | ||
"@markuplint/ml-ast": "4.0.0-alpha.10", | ||
"@markuplint/types": "4.0.0-alpha.10", | ||
"dom-accessibility-api": "^0.6.3", | ||
"is-plain-object": "^5.0.0", | ||
"type-fest": "^4.9.0" | ||
"type-fest": "^4.10.1" | ||
}, | ||
"devDependencies": { | ||
"@markuplint/test-tools": "4.0.0-alpha.9", | ||
"json-schema-to-typescript": "13.1.1" | ||
"@markuplint/test-tools": "4.0.0-alpha.10", | ||
"json-schema-to-typescript": "13.1.2" | ||
}, | ||
"gitHead": "c86b754700aaf61b561a64dbd0c87424e772f619" | ||
"gitHead": "b41153ea665aa8f091daf6114a06047f4ccb8350" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
129781
+ Added@markuplint/ml-ast@4.0.0-alpha.10(transitive)
+ Added@markuplint/types@4.0.0-alpha.10(transitive)
- Removed@markuplint/ml-ast@4.0.0-alpha.9(transitive)
- Removed@markuplint/types@4.0.0-alpha.9(transitive)
Updatedtype-fest@^4.10.1