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

yaml-jest

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

yaml-jest - npm Package Compare versions

Comparing version

to
1.0.4

3

dist/index.js

@@ -19,3 +19,4 @@ 'use strict';

var result = _jsYaml2.default.safeLoad(sourceText);
return JSON.stringify(result, undefined, '\t');
var json = JSON.stringify(result, undefined, '\t');
return 'module.exports = ' + json;
};

@@ -22,0 +23,0 @@

{
"name": "yaml-jest",
"version": "1.0.3",
"version": "1.0.4",
"description": "A YAML transform for jest",

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

@@ -25,3 +25,4 @@ // @flow

const result: string = yaml.safeLoad(sourceText);
return JSON.stringify(result, undefined, '\t');
const json = JSON.stringify(result, undefined, '\t');
return `module.exports = ${json}`;
};

@@ -28,0 +29,0 @@