Skip to content

Releases: lume/cli

v0.14.0

02 Oct 21:02
Compare
Choose a tag to compare

What's Changed

  • Stricter type checking by @trusktr in #21

    make type checking stricter by enabling noImplicitOverride and noUncheckedIndexedAccess tsconfig options.

    BREAKING: This may cause some type errors and code will need to be adjusted. In many cases the fixes are simple: prepend override to class members affected by noImplicitOverride, or add a non-null assertion (!) on expressions affected by noUncheckedIndexedAccess if not a better conditional check.

Full Changelog: v0.13.1...v0.14.0

v0.13.1

25 Sep 22:15
Compare
Choose a tag to compare

What's Changed

Plus a bunch of changes since v0.5.8:

Full Changelog: v0.5.8...v0.13.1

We'll keep the releases notes updated from now on.

v0.5.8

03 Jun 18:42
Compare
Choose a tag to compare

Added releaseAlpha and releaseBeta command for bumping alpha and beta release versions, respectively.