@dxos/lock-file 0.8.4-main.5ad4a44 → 0.8.4-main.66e292d

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": "@dxos/lock-file",
3
- "version": "0.8.4-main.5ad4a44",
3
+ "version": "0.8.4-main.66e292d",
4
4
  "description": "Lock file .",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
@@ -25,8 +25,9 @@
25
25
  ],
26
26
  "dependencies": {
27
27
  "koffi": "^2.8.0",
28
- "@dxos/async": "0.8.4-main.5ad4a44",
29
- "@dxos/node-std": "0.8.4-main.5ad4a44"
28
+ "nan": "2.23.0",
29
+ "@dxos/async": "0.8.4-main.66e292d",
30
+ "@dxos/node-std": "0.8.4-main.66e292d"
30
31
  },
31
32
  "devDependencies": {},
32
33
  "publishConfig": {
@@ -38,7 +38,7 @@ describe('LockFile', () => {
38
38
  await LockFile.release(handle2);
39
39
  });
40
40
 
41
- test('released when process exits', { timeout: 10_000 }, async () => {
41
+ test('released when process exits', { timeout: 20_000 }, async () => {
42
42
  const filename = join(TEST_DIR, `lock-${Math.random()}.lock`);
43
43
  onTestFinished(() => {
44
44
  if (existsSync(filename)) {
@@ -65,7 +65,7 @@ describe('LockFile', () => {
65
65
  });
66
66
  }
67
67
 
68
- await trigger.wait({ timeout: 5_000 });
68
+ await trigger.wait({ timeout: 15_000 });
69
69
 
70
70
  await expect(LockFile.acquire(filename)).rejects.toBeInstanceOf(Error);
71
71