sliftutils 1.7.70 → 1.7.71

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sliftutils",
3
- "version": "1.7.70",
3
+ "version": "1.7.71",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
6
  "files": [
@@ -814,7 +814,7 @@ export class ArchivesChain implements IArchives {
814
814
  if (data.length > LARGE_SET_THRESHOLD) {
815
815
  return target.write(archives => archives.setLargeFile({ path: fullKey, lastModified: config?.lastModified, getNextData: bufferChunkStream(data) }));
816
816
  }
817
- return target.write(archives => archives.set(fullKey, data, config));
817
+ return target.write(archives => archives.set(fullKey, data, config)) as any;
818
818
  });
819
819
  return fullKey;
820
820
  } catch (e) {