@dxos/phoenix 0.8.4-main.9be5663bfe → 0.8.4-main.abd8ff62ef
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/lib/node-esm/index.mjs +6 -37
- package/dist/lib/node-esm/index.mjs.map +2 -2
- package/dist/lib/node-esm/meta.json +1 -1
- package/dist/types/src/phoenix.d.ts.map +1 -1
- package/dist/types/src/testing-utils.d.ts.map +1 -1
- package/dist/types/src/utils.d.ts.map +1 -1
- package/dist/types/src/watchdog.d.ts.map +1 -1
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/package.json +5 -8
- package/src/phoenix.node.test.ts +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dxos/phoenix",
|
|
3
|
-
"version": "0.8.4-main.
|
|
3
|
+
"version": "0.8.4-main.abd8ff62ef",
|
|
4
4
|
"description": "Basic node daemon.",
|
|
5
5
|
"homepage": "https://dxos.org",
|
|
6
6
|
"bugs": "https://github.com/dxos/dxos/issues",
|
|
@@ -20,9 +20,6 @@
|
|
|
20
20
|
}
|
|
21
21
|
},
|
|
22
22
|
"types": "dist/types/src/index.d.ts",
|
|
23
|
-
"typesVersions": {
|
|
24
|
-
"*": {}
|
|
25
|
-
},
|
|
26
23
|
"files": [
|
|
27
24
|
"bin",
|
|
28
25
|
"dist",
|
|
@@ -30,10 +27,10 @@
|
|
|
30
27
|
],
|
|
31
28
|
"dependencies": {
|
|
32
29
|
"pkg-up": "^3.1.0",
|
|
33
|
-
"@dxos/async": "0.8.4-main.
|
|
34
|
-
"@dxos/log": "0.8.4-main.
|
|
35
|
-
"@dxos/invariant": "0.8.4-main.
|
|
36
|
-
"@dxos/node-std": "0.8.4-main.
|
|
30
|
+
"@dxos/async": "0.8.4-main.abd8ff62ef",
|
|
31
|
+
"@dxos/log": "0.8.4-main.abd8ff62ef",
|
|
32
|
+
"@dxos/invariant": "0.8.4-main.abd8ff62ef",
|
|
33
|
+
"@dxos/node-std": "0.8.4-main.abd8ff62ef"
|
|
37
34
|
},
|
|
38
35
|
"publishConfig": {
|
|
39
36
|
"access": "public"
|
package/src/phoenix.node.test.ts
CHANGED
|
@@ -24,8 +24,9 @@ describe.skipIf(process.env.CI)('DaemonManager', () => {
|
|
|
24
24
|
await trigger.wait({ timeout: 1_000 });
|
|
25
25
|
});
|
|
26
26
|
|
|
27
|
-
//
|
|
28
|
-
|
|
27
|
+
// Quarantined: flaky on CI (timeout starting the detached watchdog process under
|
|
28
|
+
// the moon test runner). Local runs still cover the suite during development.
|
|
29
|
+
test.skip('start/stop detached watchdog', async () => {
|
|
29
30
|
const runId = Math.random().toString();
|
|
30
31
|
const pidFile = join(TEST_DIR, `pid-${runId}.pid`);
|
|
31
32
|
const logFile = join(TEST_DIR, `file-${runId}.log`);
|