Skip to content

Releases: m-rutter/qlik-ts-ident-checker

v1.1.0

22 Feb 14:39
Compare
Choose a tag to compare

Changed

  • Now targets es5 ecmascript instead of es2017 so that the lib no longer needs
    to go through an additional compilation step for browser targets
    • I don't believe that this is a breaking change as it only increases the
      number of supported target environments
  • Including source maps for both umd and esm builds
  • Upgraded dev dependencies

v1.0.0

03 Jan 15:53
Compare
Choose a tag to compare

Changed

  • Now only checks variables that are defined in the load script, or those that
    are considered to be reserved system or load script variables. Session
    variables are ignored.
  • Numeric identifiers are padded by single underscores on either side instead
    of two
  • All enum identifers in the suggested definition are defined as strings to
    handle whitespace or non a..z & A..Z characters.
  • Added Caveat section to docs

Fixed

  • Fixed Variable implementation with incorrect list definition
  • Fixed Capabilities API impl - works now!

v0.5.0

01 Jan 22:27
Compare
Choose a tag to compare

Changed

  • Changed name of exported function
  • Updated Docs

Fixed

  • Fixed incorrect type definition for optional string enum input for
    validation

v0.3.0

01 Jan 20:04
Compare
Choose a tag to compare

Added

  • Documentation
  • Experimental Capabilities (Mashup) API support. It will probably work.

v0.2.0

01 Jan 15:03
Compare
Choose a tag to compare

Added

  • Started changelog

Changed

  • Releases now use rollup with two module flavours, umd and esm,
    specified in the package.json as main and module respectively.
  • tsc output now targets es2017 instead of es5 on the assumption that
    users will be using a modern form of node or using their own compilers for
    browser targets.