Skip to content

@patternfly/[email protected]

Compare
Choose a tag to compare
@github-actions github-actions released this 11 Oct 12:16
· 3 commits to main since this release
94b9680

Major Changes

  • f779095: Removes EleventyRenderPlugin from custom-elements-manifest 11ty plugin config. Ensure you add it yourself.

    Before:

    module.exports = function (eleventyConfig) {
      eleventyConfig.addPlugin(CustomElementsManifestPlugin);
    };

    After:

    import { EleventyRenderPlugin } from "@11ty/eleventy"; // 3.0.0 only
    export default function (eleventyConfig) {
      eleventyConfig.addPlugin(CustomElementsManifestPlugin);
      eleventyConfig.addPlugin(EleventyRenderPlugin);
    }