edf2csv 0.8.69 → 0.8.71
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 +1 -1
- package/dist/cli.js.map +1 -1
- package/dist/convert/run.d.ts +1 -1
- package/dist/convert/run.js +39 -16
- package/dist/convert/run.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -1068,7 +1068,7 @@ async function showInfo(input, shared, asJson, jsonIndent, batch = false, toStdo
|
|
|
1068
1068
|
const diagnostics = withSidecarsNamed(withSignalTableUnwritten([
|
|
1069
1069
|
...withTimingPromiseKept(withoutFileRateWarning(file.diagnostics), timing.starts !== null),
|
|
1070
1070
|
...plan.diagnostics,
|
|
1071
|
-
], plan.writeSignals), { toStdout, gzip: plan.gzip });
|
|
1071
|
+
], plan.writeSignals, plan.gzip), { 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.
|