@patternslib/dev
Advanced tools
Changelog
3.1.3 (2022-11-18)
Changelog
3.1.0 (2022-11-15)
Adding the compiled bundle to npm allows to directly include it via a CDN like so:
https://cdn.jsdelivr.net/npm/@patternslib/patternslib@9.7.0-alpha.2/dist/bundle.min.js or https://unpkg.com/@patternslib/patternslib@9.7.0-alpha.2/dist/bundle.min.js
We have to compile the bundle with the correct version BEFORE the npm package is created with release-it. The next version is queried using the LEVEL parameter (set by the different release targets) and the "semver" tool.
Changelog
3.0.0 (2022-10-15)
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;