@file-services/memory
Advanced tools
Comparing version 9.3.1 to 9.4.0
{ | ||
"name": "@file-services/memory", | ||
"description": "An in-memory, sync/async, file system implementation.", | ||
"version": "9.3.1", | ||
"version": "9.4.0", | ||
"main": "./dist/fs-memory.cjs", | ||
@@ -21,5 +21,5 @@ "types": "./dist/index.d.ts", | ||
"dependencies": { | ||
"@file-services/path": "^9.3.1", | ||
"@file-services/types": "^9.3.1", | ||
"@file-services/utils": "^9.3.1" | ||
"@file-services/path": "^9.4.0", | ||
"@file-services/types": "^9.4.0", | ||
"@file-services/utils": "^9.4.0" | ||
}, | ||
@@ -26,0 +26,0 @@ "files": [ |
@@ -233,2 +233,3 @@ import path from "@file-services/path"; | ||
mtime: currentDate, | ||
ctime: currentDate, | ||
isFile: returnsTrue, | ||
@@ -577,3 +578,3 @@ isDirectory: returnsFalse, | ||
const currentDate = new Date(Date.now()); | ||
const currentDate = new Date(); | ||
const fileName = posixPath.basename(resolvedLinkPath); | ||
@@ -586,2 +587,3 @@ const symlinkNode: IFsMemSymlinkNode = { | ||
mtime: currentDate, | ||
ctime: currentDate, | ||
isFile: returnsFalse, | ||
@@ -682,2 +684,3 @@ isDirectory: returnsFalse, | ||
mtime: currentDate, | ||
ctime: currentDate, | ||
isFile: returnsFalse, | ||
@@ -684,0 +687,0 @@ isDirectory: returnsTrue, |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
155600
1902
Updated@file-services/path@^9.4.0
Updated@file-services/types@^9.4.0
Updated@file-services/utils@^9.4.0