Skip to content

v3.0.0

Compare
Choose a tag to compare
@jgravois jgravois released this 10 Jan 20:45
· 50 commits to master since this release

Breaking Changes

  • this library no longer mixes default and named exports.
import { adlib } from "adlib";
import { mapValues } from "adlib";

// NOT
// import adlib from "adlib";
// import mapValues from "adlib";

Since adlib is the namespace for all the functions we export, this means that UMD consumers will now call adlib.adlib().