Skip to content

Release v0.2.4

Compare
Choose a tag to compare
@github-actions github-actions released this 22 Feb 05:50

chore(BREAKING CHANGE): Switch to rollup

This commit does:

  • Change the build tool from webpack to rollup.
  • Change the way this module is exported, now it's exported as both an
    ES module and a CommonJS module.
  • package.json now reflects that fact by exporting a main (CommonJS) and
    a modules (ESM).
  • The code is now bundled as multiple sub-modules: index (main code),
    cli (only cli building related code), test (only test helpers, build
    only as CommonJS, as Jest only supports this).
  • package.json now has an "exports" section to support the multiple
    modules, and an associated "typesVersions" to support typings in this
    submodules.
  • Changed typedoc minimal version to 0.2.26 to support --watch.
  • Removed onchange as now it's not needed with typedoc watch mode.
  • Updated README

BREAKING CHANGE