File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11# @patternfly/pfe-tools
22
3+ ## 4.0.0
4+
5+ ### Major Changes
6+
7+ - f779095: Removes ` EleventyRenderPlugin ` from custom-elements-manifest 11ty plugin config. Ensure you add it yourself.
8+
9+ Before:
10+
11+ ``` js
12+ module .exports = function (eleventyConfig ) {
13+ eleventyConfig .addPlugin (CustomElementsManifestPlugin);
14+ };
15+ ```
16+
17+ After:
18+
19+ ``` js
20+ import { EleventyRenderPlugin } from " @11ty/eleventy" ; // 3.0.0 only
21+ export default function (eleventyConfig ) {
22+ eleventyConfig .addPlugin (CustomElementsManifestPlugin);
23+ eleventyConfig .addPlugin (EleventyRenderPlugin);
24+ }
25+ ```
26+
327## 3.0.2
428
529### Patch Changes
Original file line number Diff line number Diff line change 11{
22 "name" : " @patternfly/pfe-tools" ,
3- "version" : " 3 .0.2 " ,
3+ "version" : " 4 .0.0 " ,
44 "type" : " module" ,
55 "description" : " Development and build tools for PatternFly Elements and related projects" ,
66 "keywords" : [
You can’t perform that action at this time.
0 commit comments