@get-bb/plugin-sdk 0.4.18 → 0.4.20
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/provider-bridge-acp.js +1069 -1059
- package/dist/provider-bridge-testing.js +2 -2
- package/package.json +1 -1
|
@@ -6556,7 +6556,7 @@ function describeCalibrationEvents(events) {
|
|
|
6556
6556
|
|
|
6557
6557
|
// ../provider-bridge-protocol/src/testing/parity.ts
|
|
6558
6558
|
import { spawn } from "node:child_process";
|
|
6559
|
-
import { existsSync as existsSync2, mkdtempSync, rmSync, writeFileSync } from "node:fs";
|
|
6559
|
+
import { existsSync as existsSync2, mkdtempSync, realpathSync, rmSync, writeFileSync } from "node:fs";
|
|
6560
6560
|
import { tmpdir } from "node:os";
|
|
6561
6561
|
import { isAbsolute, join as join2, resolve as resolve2 } from "node:path";
|
|
6562
6562
|
import { fileURLToPath as fileURLToPath2 } from "node:url";
|
|
@@ -6883,7 +6883,7 @@ async function replayRecording(options) {
|
|
|
6883
6883
|
const profile = options.profile ?? DEFAULT_REPLAY_PROFILE;
|
|
6884
6884
|
const recording = readBridgeRecording(options.recordingDir);
|
|
6885
6885
|
const stateDir = mkdtempSync(join2(tmpdir(), "bb-parity-replay-"));
|
|
6886
|
-
const workspaceDir = mkdtempSync(join2(tmpdir(), "bb-parity-ws-"));
|
|
6886
|
+
const workspaceDir = realpathSync(mkdtempSync(join2(tmpdir(), "bb-parity-ws-")));
|
|
6887
6887
|
const replayCommand = [
|
|
6888
6888
|
process.execPath,
|
|
6889
6889
|
REPLAY_CHILD_PATH,
|