jest-config
Advanced tools
Comparing version 19.0.3 to 19.0.4
@@ -22,4 +22,5 @@ /** | ||
const cacheDirectory = (() => { | ||
if (process.getuid == null) { | ||
const cacheDirectory = (() => {var _process = | ||
process;const getuid = _process.getuid; | ||
if (getuid == null) { | ||
return path.join(os.tmpdir(), 'jest'); | ||
@@ -32,4 +33,3 @@ } | ||
os.tmpdir(), | ||
'jest', | ||
process.getuid && process.getuid().toString(36) || ''); | ||
'jest_' + getuid.call(process).toString(36)); | ||
@@ -36,0 +36,0 @@ })(); |
{ | ||
"name": "jest-config", | ||
"version": "19.0.3", | ||
"version": "19.0.4", | ||
"repository": { | ||
@@ -5,0 +5,0 @@ "type": "git", |
48846