Skip to content

v0.7.0

Compare
Choose a tag to compare
@Zyie Zyie released this 04 Jul 13:44
· 23 commits to main since this release

What's Changed

  • fix(core): Fix glob patterns not being relative to entry location by @Zyie in #34
  • feat(compress): Adds compress plugin by @Zyie in #36
    • You can now define one plugin for all compressions, instead of having to add individual ones
      const config = {
              plugins: {
      +              compress: compress({
      +                   webp: false,
      +                   avif: false,
      +               }),
      -               compressPng: compressPng(),
      -               compressJpg: compressJpg()
              },
      }
      Old plugins do still exist for backwards compatibility
  • feat(core): Adds ability to set multiple values to a tag by @Zyie in #35
  • fix: add ffmpeg installer for fluentmpeg by @miltoncandelero

Full Changelog: v0.6.2...v0.7.0