edf2csv 0.9.42 → 0.9.44
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/plan.d.ts +9 -0
- package/dist/convert/plan.js +71 -13
- package/dist/convert/plan.js.map +1 -1
- package/dist/convert/run.d.ts +16 -1
- package/dist/convert/run.js +42 -7
- package/dist/convert/run.js.map +1 -1
- package/dist/edf/errors.d.ts +1 -1
- package/dist/edf/errors.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -18,7 +18,7 @@ import process from 'node:process';
|
|
|
18
18
|
import { EdfError } from './edf/errors.js';
|
|
19
19
|
import { EdfFile } from './edf/reader.js';
|
|
20
20
|
import { buildPlan, withoutFileRateWarning } from './convert/plan.js';
|
|
21
|
-
import { convertedChannels, ConversionError, USAGE_ERROR_CODES, auditStdout, convert, defaultOutputDir, describeFsError, descriptionDiagnostics, emptyAnnotations, withSidecarsNamed, withSignalTableUnwritten, durationDiagnostics, requestedAnnotationWindow, noAnnotations, noSignalFile, stdoutRefusal, } from './convert/run.js';
|
|
21
|
+
import { channelsWithoutRows, convertedChannels, ConversionError, USAGE_ERROR_CODES, auditStdout, convert, defaultOutputDir, describeFsError, descriptionDiagnostics, emptyAnnotations, withSidecarsNamed, withSignalTableUnwritten, durationDiagnostics, requestedAnnotationWindow, noAnnotations, noSignalFile, stdoutRefusal, } from './convert/run.js';
|
|
22
22
|
import { ChannelSelectionError } from './convert/channels.js';
|
|
23
23
|
// Shared with the library so a bad option is the same error whichever way it arrived.
|
|
24
24
|
import { MAX_DECIMALS, OptionError } from './convert/options.js';
|
|
@@ -1092,7 +1092,7 @@ async function showInfo(input, shared, asJson, jsonIndent, batch = false, toStdo
|
|
|
1092
1092
|
const diagnostics = withSidecarsNamed(withSignalTableUnwritten([
|
|
1093
1093
|
...withTimingPromiseKept(withoutFileRateWarning(file.diagnostics), timing.starts !== null),
|
|
1094
1094
|
...plan.diagnostics,
|
|
1095
|
-
], plan.writeSignals, plan.gzip, convertedChannels(plan), toStdout, plan.layout === 'long'), { toStdout, gzip: plan.gzip });
|
|
1095
|
+
], plan.writeSignals, plan.gzip, convertedChannels(plan), toStdout, plan.layout === 'long', channelsWithoutRows(plan)), { toStdout, gzip: plan.gzip });
|
|
1096
1096
|
/*
|
|
1097
1097
|
Checked, like a conversion's stdout is.
|
|
1098
1098
|
|