sliftutils 0.67.0 → 0.68.0

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": "0.67.0",
3
+ "version": "0.68.0",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
6
  "files": [
@@ -278,6 +278,7 @@ export class TransactionStorage implements IStorage<Buffer> {
278
278
 
279
279
  await fileLockSection(async () => {
280
280
  if (!await anyChanges()) return;
281
+ console.log(`Found new changes in collection from other tab. Loading them now. ${this.debugName}`);
281
282
  await this.loadAllTransactions();
282
283
  });
283
284
  }