Skip to content

Commit

Permalink
chore: prepare release (#2866)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Oct 11, 2024
1 parent f779095 commit 94b9680
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 22 deletions.
21 changes: 0 additions & 21 deletions .changeset/spicy-islands-yawn.md

This file was deleted.

24 changes: 24 additions & 0 deletions tools/pfe-tools/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# @patternfly/pfe-tools

## 4.0.0

### Major Changes

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

Before:

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

After:

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

## 3.0.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion tools/pfe-tools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@patternfly/pfe-tools",
"version": "3.0.2",
"version": "4.0.0",
"type": "module",
"description": "Development and build tools for PatternFly Elements and related projects",
"keywords": [
Expand Down

0 comments on commit 94b9680

Please sign in to comment.