Skip to content

Release 3.0.0

Choose a tag to compare

@thet thet released this 15 Oct 13:13
· 223 commits to main since this release

3.0.0 (2022-10-15)

Features

  • Build: Add Module Federation configuration for webpack. (b84c2fb)

Breaking Changes

  • Build: Remove the showdown-prettify loading config and the now unused imports-loader. (27ba90f)

  • Tests: Remove dependency on jQuery. (259d801)Use the following in your test setup to provide jQuery to external
    libraries if they depend on a global jQuery object or extend from the
    jest config from @patternslib/patternslib:

import jquery from "jquery";
global.$ = global.jQuery = jquery;
  • Tests: Remove the Dependency on @patternslib/patternslib. (afe8fee)If you need Patternslib specific test setup, extend from Patternslib.

Maintenance