edfcore 0.4.261 → 0.4.263
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 +32 -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.263";
|
|
113
113
|
//# sourceMappingURL=constants.d.ts.map
|
package/dist/constants.js
CHANGED
package/docs/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,38 @@ 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.263
|
|
10
|
+
|
|
11
|
+
- **Added** a sweep that compiles every self-contained example in the documentation, instead of
|
|
12
|
+
the five somebody remembered to write a twin for. `documented-examples.test-d.ts` keeps a
|
|
13
|
+
hand-written compiled copy per snippet, which is thorough and does not scale; the site has 102
|
|
14
|
+
fenced blocks that import from `edfcore`. All of them are now extracted, pointed at `src/`, and
|
|
15
|
+
compiled in one `tsc` under the flags this repository builds with. It costs about 1.5 seconds.
|
|
16
|
+
- **Fixed** the example it found on `discontinuous.md`, which passed `chunk.signals[0]` to
|
|
17
|
+
`trimToWindow` — `EdfChunkSignal | undefined` under `noUncheckedIndexedAccess`, so
|
|
18
|
+
`TS2345`. That is the fourth page with this defect and the last one; 0.4.260 through 0.4.262
|
|
19
|
+
fixed the README, `reading-signals.md` and `annotations.md`.
|
|
20
|
+
- Fences that cannot stand alone are skipped, on two markers that both mean "part of something
|
|
21
|
+
larger" rather than "wrong": `TS2304 Cannot find name`, for a block using a `recording` an
|
|
22
|
+
earlier block declared, and `TS1108`, for a block that is a function body shown without its
|
|
23
|
+
signature — which is how `api-errors.md` and `diagnostics.md` teach a handler. The number left
|
|
24
|
+
standing alone is asserted to stay above twenty, so the exemption cannot quietly grow to cover
|
|
25
|
+
everything.
|
|
26
|
+
|
|
27
|
+
## 0.4.262
|
|
28
|
+
|
|
29
|
+
- **Fixed** the worked example on `annotations.md` — read the sample under each sleep-stage event
|
|
30
|
+
— which was the other complete program that failed to compile on nothing but an unnarrowed
|
|
31
|
+
index. It ended `toPhysical(signal, chunk.signals[0].digital)`, and `chunk.signals[0]` is
|
|
32
|
+
`T | undefined` under `noUncheckedIndexedAccess` even though the call asked for exactly one
|
|
33
|
+
signal. It narrows with a `continue` now, which is the shape the loop around it already uses
|
|
34
|
+
twice, and the numbered comment says the thing worth knowing: asking for one signal does not
|
|
35
|
+
tell the compiler you got one.
|
|
36
|
+
|
|
37
|
+
That closes both of the complete-but-unsound examples the 102-fence sweep in 0.4.261 turned up.
|
|
38
|
+
The rest of the site's failures are fragments referencing a `recording` or a `header` declared
|
|
39
|
+
in an earlier block on the same page, which is what a reference page is for.
|
|
40
|
+
|
|
9
41
|
## 0.4.261
|
|
10
42
|
|
|
11
43
|
- **Fixed** the opening example of `reading-signals.md`, which did not compile. It is the first
|
package/package.json
CHANGED
package/src/constants.ts
CHANGED