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
|
@@ -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) {
|