@slot-engine/core 0.1.14-test.0 → 0.1.14
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.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -2094,7 +2094,9 @@ ${error.stack}
|
|
|
2094
2094
|
const forceRecordsPath = this.PATHS.forceRecords(mode);
|
|
2095
2095
|
const aggregatedRecords = /* @__PURE__ */ new Map();
|
|
2096
2096
|
if (fs2.existsSync(tempRecordsPath)) {
|
|
2097
|
-
const fileStream = fs2.createReadStream(tempRecordsPath
|
|
2097
|
+
const fileStream = fs2.createReadStream(tempRecordsPath, {
|
|
2098
|
+
highWaterMark: this.streamHighWaterMark
|
|
2099
|
+
});
|
|
2098
2100
|
const rl = readline2.createInterface({
|
|
2099
2101
|
input: fileStream,
|
|
2100
2102
|
crlfDelay: Infinity
|