Skip to content

Commit 94b9680

Browse files
chore: prepare release (#2866)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent f779095 commit 94b9680

File tree

3 files changed

+25
-22
lines changed

3 files changed

+25
-22
lines changed

.changeset/spicy-islands-yawn.md

Lines changed: 0 additions & 21 deletions
This file was deleted.

tools/pfe-tools/CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
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

tools/pfe-tools/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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": [

0 commit comments

Comments
 (0)