file-entry-cache 10.0.2 → 10.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -68,7 +68,7 @@ var FileEntryDefault = class {
68
68
  static createFromFile = createFromFile;
69
69
  };
70
70
  var FileEntryCache = class {
71
- _cache = new import_flat_cache.FlatCache();
71
+ _cache = new import_flat_cache.FlatCache({ useClone: false });
72
72
  _useCheckSum = false;
73
73
  _currentWorkingDirectory;
74
74
  _hashAlgorithm = "md5";
@@ -219,6 +219,7 @@ var FileEntryCache = class {
219
219
  changed: false,
220
220
  meta: {}
221
221
  };
222
+ result.meta = this._cache.getKey(result.key) ?? {};
222
223
  filePath = this.getAbsolutePath(filePath, { currentWorkingDirectory: options?.currentWorkingDirectory });
223
224
  const useCheckSumValue = options?.useCheckSum ?? this._useCheckSum;
224
225
  try {
@@ -250,15 +251,19 @@ var FileEntryCache = class {
250
251
  this._cache.setKey(result.key, result.meta);
251
252
  return result;
252
253
  }
253
- result.meta.data = metaCache.data;
254
+ if (result.meta.data !== metaCache.data) {
255
+ result.changed = true;
256
+ }
257
+ if (result.meta.data === void 0) {
258
+ result.meta.data = metaCache.data;
259
+ }
254
260
  if (metaCache?.mtime !== result.meta?.mtime || metaCache?.size !== result.meta?.size) {
255
261
  result.changed = true;
256
- this._cache.setKey(result.key, result.meta);
257
262
  }
258
263
  if (useCheckSumValue && metaCache?.hash !== result.meta?.hash) {
259
264
  result.changed = true;
260
- this._cache.setKey(result.key, result.meta);
261
265
  }
266
+ this._cache.setKey(result.key, result.meta);
262
267
  return result;
263
268
  }
264
269
  /**
package/dist/index.js CHANGED
@@ -31,7 +31,7 @@ var FileEntryDefault = class {
31
31
  static createFromFile = createFromFile;
32
32
  };
33
33
  var FileEntryCache = class {
34
- _cache = new FlatCache();
34
+ _cache = new FlatCache({ useClone: false });
35
35
  _useCheckSum = false;
36
36
  _currentWorkingDirectory;
37
37
  _hashAlgorithm = "md5";
@@ -182,6 +182,7 @@ var FileEntryCache = class {
182
182
  changed: false,
183
183
  meta: {}
184
184
  };
185
+ result.meta = this._cache.getKey(result.key) ?? {};
185
186
  filePath = this.getAbsolutePath(filePath, { currentWorkingDirectory: options?.currentWorkingDirectory });
186
187
  const useCheckSumValue = options?.useCheckSum ?? this._useCheckSum;
187
188
  try {
@@ -213,15 +214,19 @@ var FileEntryCache = class {
213
214
  this._cache.setKey(result.key, result.meta);
214
215
  return result;
215
216
  }
216
- result.meta.data = metaCache.data;
217
+ if (result.meta.data !== metaCache.data) {
218
+ result.changed = true;
219
+ }
220
+ if (result.meta.data === void 0) {
221
+ result.meta.data = metaCache.data;
222
+ }
217
223
  if (metaCache?.mtime !== result.meta?.mtime || metaCache?.size !== result.meta?.size) {
218
224
  result.changed = true;
219
- this._cache.setKey(result.key, result.meta);
220
225
  }
221
226
  if (useCheckSumValue && metaCache?.hash !== result.meta?.hash) {
222
227
  result.changed = true;
223
- this._cache.setKey(result.key, result.meta);
224
228
  }
229
+ this._cache.setKey(result.key, result.meta);
225
230
  return result;
226
231
  }
227
232
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "file-entry-cache",
3
- "version": "10.0.2",
3
+ "version": "10.0.3",
4
4
  "description": "A lightweight cache for file metadata, ideal for processes that work on a specific set of files and only need to reprocess files that have changed since the last run",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -29,12 +29,12 @@
29
29
  "cache"
30
30
  ],
31
31
  "devDependencies": {
32
- "@types/node": "^22.9.0",
33
- "@vitest/coverage-v8": "^2.1.4",
32
+ "@types/node": "^22.9.3",
33
+ "@vitest/coverage-v8": "^2.1.5",
34
34
  "rimraf": "^6.0.1",
35
35
  "tsup": "^8.3.5",
36
- "typescript": "^5.6.3",
37
- "vitest": "^2.1.4",
36
+ "typescript": "^5.7.2",
37
+ "vitest": "^2.1.5",
38
38
  "xo": "^0.59.3"
39
39
  },
40
40
  "dependencies": {