@kubb/core 0.43.1 → 0.43.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.
@@ -17253,7 +17253,7 @@ ${file.source}`;
17253
17253
  addOrAppend(file) {
17254
17254
  const previousCache = this.getCacheByPath(file.path);
17255
17255
  if (previousCache) {
17256
- this.remove(previousCache.id);
17256
+ this.cache.delete(previousCache.id);
17257
17257
  return this.add({
17258
17258
  ...file,
17259
17259
  source: `${previousCache.file.source}
@@ -17607,7 +17607,7 @@ ${curr.source}`,
17607
17607
  await pluginManager.hookParallel("buildEnd");
17608
17608
  setTimeout(() => {
17609
17609
  done({ files: fileManager.files.map((file) => ({ ...file, source: fileManager.getSource(file) })) });
17610
- }, 1e3);
17610
+ }, 500);
17611
17611
  });
17612
17612
  fileManager.events.onAdd(async (id, file) => {
17613
17613
  const { path } = file;