edfcore 0.4.447 → 0.4.449
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/constants.d.ts +1 -1
- package/dist/constants.js +1 -1
- package/docs/CHANGELOG.md +36 -0
- package/package.json +1 -1
- package/src/constants.ts +1 -1
package/dist/constants.d.ts
CHANGED
|
@@ -109,5 +109,5 @@ export declare const SIGNAL_FIELD_BLOCK_OFFSETS: {
|
|
|
109
109
|
readonly reserved: 224;
|
|
110
110
|
};
|
|
111
111
|
/** Published package version. Kept in sync with package.json by a test. */
|
|
112
|
-
export declare const VERSION = "0.4.
|
|
112
|
+
export declare const VERSION = "0.4.449";
|
|
113
113
|
//# sourceMappingURL=constants.d.ts.map
|
package/dist/constants.js
CHANGED
package/docs/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,42 @@ alone does not tell you whether you were affected.
|
|
|
6
6
|
edfcore is pre-1.0. Patch releases have carried behaviour changes where the old behaviour was a
|
|
7
7
|
defect; those are called out below.
|
|
8
8
|
|
|
9
|
+
## 0.4.449
|
|
10
|
+
|
|
11
|
+
- **Added** a check that the sourcemaps in the published package point at files the package ships.
|
|
12
|
+
`sourceMap` and `declarationMap` in the build config and `src` in `files` are one feature: tsc
|
|
13
|
+
emits maps whose sources are `../src/x.ts` relative to `dist/` and inlines no `sourcesContent`,
|
|
14
|
+
so the maps resolve only because the TypeScript ships beside them. That is why
|
|
15
|
+
`check-tarball.mjs` refuses a tarball without `src/` with the words "the sourcemaps resolve to
|
|
16
|
+
nothing".
|
|
17
|
+
- Nothing checked that the maps say what the arrangement assumes, and three edits break it while
|
|
18
|
+
failing nothing: dropping `src` from `files` to make the tarball smaller — 250 KB of TypeScript
|
|
19
|
+
for a package whose `dist` is what runs looks like dead weight; turning `sourcesContent` on,
|
|
20
|
+
which makes `src/` redundant right up until someone turns it off again; or turning either map off.
|
|
21
|
+
- What breaks is not a build. It is a consumer stepping into `openEdf` in a debugger and landing in
|
|
22
|
+
compiled output, or "go to definition" on `EdfHeader` opening a `.d.ts` instead of the file whose
|
|
23
|
+
comments explain the field. The package still installs, still imports, still passes everything
|
|
24
|
+
here — what stops working is the reason `removeComments: false` and `declarationMap` are set at
|
|
25
|
+
all, that the source is what a reader reaches.
|
|
26
|
+
|
|
27
|
+
## 0.4.448
|
|
28
|
+
|
|
29
|
+
- **Added** tests for what `edfcore json` puts in a file you are about to pipe somewhere. Piping is
|
|
30
|
+
the whole reason the command exists — into `jq`, a manifest, a ticket, a spreadsheet a directory
|
|
31
|
+
sweep produced — which is why identification is opt-in here as it is in `formatHeader`.
|
|
32
|
+
- `json` defends differently from the other two commands. `header` and `validate` redact, putting
|
|
33
|
+
a placeholder where a value was; `json` omits the key entirely, because an object recording that
|
|
34
|
+
a patient field existed and was withheld is a different thing for a machine to read.
|
|
35
|
+
- The diagnostics are the quieter half. They are reduced to `code` and `severity` — no message, no
|
|
36
|
+
raw, no actual — so identification cannot arrive through a diagnostic that quoted the field it
|
|
37
|
+
was complaining about, and every identification diagnostic does quote it. That is achieved by an
|
|
38
|
+
object literal naming two properties, which is one careless spread away from carrying all of
|
|
39
|
+
them.
|
|
40
|
+
- `trimEdfField` rather than `.trim()` is the third. `.trim()` leaves U+0000 in place, so on the
|
|
41
|
+
NUL-padded fields a large share of real writers emit, `JSON.stringify` escapes each one into a
|
|
42
|
+
six-character sequence inside the value — unreadable, and a disclosure of the field's exact
|
|
43
|
+
width.
|
|
44
|
+
|
|
9
45
|
## 0.4.447
|
|
10
46
|
|
|
11
47
|
- **Added** a check that a machine which has not downloaded the corpus still gets a green suite.
|
package/package.json
CHANGED
package/src/constants.ts
CHANGED