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

git-csv-diff

Package Overview
Dependencies
Maintainers
1
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

git-csv-diff - npm Package Compare versions

Comparing version 1.1.13 to 1.1.14

2

package.json
{
"name": "git-csv-diff",
"author": "Valor-Software",
"version": "1.1.13",
"version": "1.1.14",
"license": "GPL-3.0",

@@ -6,0 +6,0 @@ "description": "Library generate difference between csv-files based on Git commit hash",

@@ -59,2 +59,6 @@ 'use strict';

setMetaDataFile(modelDiff.metadata.file, metaData);
if(!isSchemaExists(modelDiff.metadata)) {
return;
}
setMetaDataType(modelDiff.metadata);

@@ -465,2 +469,7 @@ setMetaDataLanguage(modelDiff.metadata, metaData.fileName);

function isSchemaExists(metadata) {
const schemaSource = metadata.file.new ? metadata.file.new : metadata.file.old;
return schemaSource && schemaSource.hasOwnProperty('schema');
}
function setMetaDataType(metadata) {

@@ -467,0 +476,0 @@ const primaryKeys = getPrimaryKeys(metadata);

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