Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@markuplint/ml-ast

Package Overview
Dependencies
Maintainers
1
Versions
120
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@markuplint/ml-ast - npm Package Compare versions

Comparing version 3.0.0-alpha.2 to 3.0.0-alpha.3

21

lib/types.d.ts

@@ -119,4 +119,23 @@ export interface MLToken {

*/
endTag?: 'xml' | 'omittable' | 'never';
endTag?: EndTagType;
/**
* Detect value as a true if its attribute is booleanish value and omitted.
*
* Ex:
* ```jsx
* <Component aria-hidden />
* ```
*
* In the above, the `aria-hidden` is `true`.
*/
booleanish?: boolean;
}
/**
* The end tag omittable type.
*
* - `"xml"`: Must need an end tag or must self-close
* - `"omittable"`: May omit
* - `"never"`: Never need
*/
export declare type EndTagType = 'xml' | 'omittable' | 'never';
export declare type ParserOptions = {

@@ -123,0 +142,0 @@ ignoreFrontMatter?: boolean;

4

package.json
{
"name": "@markuplint/ml-ast",
"version": "3.0.0-alpha.2",
"version": "3.0.0-alpha.3",
"description": "The markuplint AST types.",

@@ -18,3 +18,3 @@ "repository": "git@github.com:markuplint/markuplint.git",

},
"gitHead": "830bf8187b81bf5ca2f5f09b6f85a98395a58bdb"
"gitHead": "884b1a6a7385e86cca7796b0b927a886ee90140e"
}

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc