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

@markuplint/ml-config

Package Overview
Dependencies
Maintainers
1
Versions
137
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@markuplint/ml-config - npm Package Compare versions

Comparing version 2.0.0-rc.3 to 2.0.0-rc.5

6

lib/merge-config.js

@@ -135,6 +135,6 @@ "use strict";

function mergeRules(a, b) {
if (!a) {
if (a == null) {
return b || undefined;
}
if (!b) {
if (b == null) {
return a || undefined;

@@ -145,3 +145,3 @@ }

const merged = mergeRule(res[key], rule);
if (merged) {
if (merged != null) {
res[key] = merged;

@@ -148,0 +148,0 @@ }

{
"name": "@markuplint/ml-config",
"version": "2.0.0-rc.3",
"version": "2.0.0-rc.5",
"description": "JSON Schema and TypeScript types of markuplint configure JSON",

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

},
"gitHead": "fd98dfe75d24c63190f0fd578ef2633ff638e6ab"
"gitHead": "6faa4e54f16d3700d23953330abea89ccb9d6150"
}

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