edf2csv 0.8.68 → 0.8.70
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/cli.js +2 -2
- package/dist/cli.js.map +1 -1
- package/dist/convert/run.js +35 -8
- package/dist/convert/run.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -1065,10 +1065,10 @@ async function showInfo(input, shared, asJson, jsonIndent, batch = false, toStdo
|
|
|
1065
1065
|
// conversion, so stderr stays empty and the whole result is one parseable thing.
|
|
1066
1066
|
// `--stdout` writes no sidecars, and `--info --stdout` describes that run; see
|
|
1067
1067
|
// withSidecarsNamed.
|
|
1068
|
-
const diagnostics = withSignalTableUnwritten(
|
|
1068
|
+
const diagnostics = withSidecarsNamed(withSignalTableUnwritten([
|
|
1069
1069
|
...withTimingPromiseKept(withoutFileRateWarning(file.diagnostics), timing.starts !== null),
|
|
1070
1070
|
...plan.diagnostics,
|
|
1071
|
-
], { toStdout, gzip: plan.gzip })
|
|
1071
|
+
], plan.writeSignals), { toStdout, gzip: plan.gzip });
|
|
1072
1072
|
if (!asJson && diagnostics.length > 0) {
|
|
1073
1073
|
/*
|
|
1074
1074
|
Named when there is more than one recording to confuse it with.
|