New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

markuplint

Package Overview
Dependencies
Maintainers
1
Versions
294
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

markuplint - npm Package Compare versions

Comparing version 0.6.0 to 0.6.1

7

lib/util/fileSearch.js

@@ -5,4 +5,7 @@ "use strict";

const path = require("path");
const util = require("util");
const exists = util.promisify(fs.exists);
const exists = (p) => {
return new Promise((r, e) => {
fs.exists(p, r);
});
};
async function fileSearch(fileList, dir) {

@@ -9,0 +12,0 @@ const notfoundFiles = [];

{
"name": "markuplint",
"version": "0.6.0",
"version": "0.6.1",
"description": "HTML linter for legacy/modern HTML, Web Components, SVG, MathML, AMP HTML and more.",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

@@ -8,3 +8,3 @@ {

"name": "dir",
"description": "Text direction in this element. Possible values are:\n \n ltr: Indicates that the text should go in a left-to-right direction.\n rtl: Indicates that the text should go in a right-to-left direction.\n \n "
"description": "The direction in which text should be rendered in this element's contents. Possible values are:\n \n ltr: Indicates that the text should go in a left-to-right direction.\n rtl: Indicates that the text should go in a right-to-left direction.\n \n "
}

@@ -11,0 +11,0 @@ ],

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