Skip to content

0.3.0

Compare
Choose a tag to compare
@marcjulian marcjulian released this 01 Feb 10:05
· 12 commits to master since this release

⚠ BREAKING CHANGES

@notiz/cookie-monster is shipped with the APF (Angular Package Format) format starting with Angular 13. Thus only compatible with Angular 13 version and higher.

Update your tailwind.config.js to match the new .mjs files for styles

// tailwind.config.js
module.exports = {
  content: [
   './src/**/*.{html,ts}', // your purge config
-  './node_modules/@notiz/cookie-monster/esm2015/**/*.js', // 👈 cookie banner component
+  './node_modules/@notiz/cookie-monster/esm2020/**/*.mjs', // 👈 cookie banner component
  ],
  theme: {},
};

Features

  • update to Angular 13 and switch to APF