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

jest-config

Package Overview
Dependencies
Maintainers
3
Versions
308
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jest-config - npm Package Compare versions

Comparing version 19.0.2 to 19.0.3

16

build/defaults.js

@@ -22,2 +22,16 @@ /**

const cacheDirectory = (() => {
if (process.getuid == null) {
return path.join(os.tmpdir(), 'jest');
}
// On some platforms tmpdir() is `/tmp`, causing conflicts between different
// users and permission issues. Adding an additional subdivision by UID can
// help.
return path.join(
os.tmpdir(),
'jest',
process.getuid && process.getuid().toString(36) || '');
})();
module.exports = {

@@ -27,3 +41,3 @@ automock: false,

browser: false,
cacheDirectory: path.join(os.tmpdir(), 'jest'),
cacheDirectory,
clearMocks: false,

@@ -30,0 +44,0 @@ coveragePathIgnorePatterns: [NODE_MODULES_REGEXP],

2

package.json
{
"name": "jest-config",
"version": "19.0.2",
"version": "19.0.3",
"repository": {

@@ -5,0 +5,0 @@ "type": "git",

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