Releases: vitaly-t/spex
Releases · vitaly-t/spex
3.4.0
3.3.0
3.2.0
3.1.0
- TypeScript: Added templates support for
batch
function, to support tuples deconstruction. See PR-14.
Now you can deconstruct tuples like this:
const [first, second] = await spex.batch<number, string>([123, 'hello']);
// first type is inferred as number
// second type is inferred as string
- Revised and fixed tests for NodeJS v8 and v15
- Made NodeJS v15 officially supported
- Updated DEV dependencies
3.0.2
3.0.1
3.0.0
This major update includes a few breaking changes.
- Node.js v4.5 is the new minimum, which also upps in-browser requirements accordingly
- All code rewritten for use of the ES6 syntax everywhere
- TypeScript 3.x with
strict
mode compliance implemented - All TypeScript
type
exports replaced with corresponding interfaces - Strict eslint-ing implemented
- Lots of documentation updated
- All dependencies updated