Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG-1.x.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# 1.11.0 (2021)

- [](https://github.com/patternfly/patternfly-elements/commit/) feat: Turn on indepenent versioning for lerna
- [d3ea7fa](https://github.com/patternfly/patternfly-elements/commit/d3ea7facb0c36b7f3e20e2568bdc4bf2e5a5a852) feat: Graceful failure for component registry
- [](https://github.com/patternfly/patternfly-elements/commit/) fix: Accordion alignment with latest design kit
- [5f88c39](https://github.com/patternfly/patternfly-elements/commit/5f88c3963f8a6c13a9aeba6e9f664678453d46ce) fix: Jump links parseInt for IE11
Expand Down
13 changes: 8 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,15 @@ npm run dev -- --storybook --docs # This will build and spin up a local server w
```

### Additional dependencies
If you will be doing any release work, it is recommended that you install Hub.
It is recommended that you install the GitHub CLI for running releases and to make interacting with the project on the command line easier. To install on:

To install on a MacOS: `brew install hub`.
- MacOS: `brew install gh`.
- Other: [GH](https://github.com/cli/cli#installation)

For other systems, please see documentation:
- [Hub](https://hub.github.com/)
If you will be running releases, please also install parse-changelog:

- MacOS: `brew install taiki-e/tap/parse-changelog`
- Other: [Release page](https://github.com/taiki-e/parse-changelog/releases)

_Note: You will need to use [Node](https://nodejs.org/en/) v12 or higher._

Expand Down Expand Up @@ -162,4 +165,4 @@ You can also participate in discussions on [patternfly.slack.com](https://patter
[theming]: https://patternflyelements.org/theming/
[wc-org]: https://webcomponents.org

[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat)](https://github.com/prettier/prettier) [![tested with webdriver.io](https://img.shields.io/badge/tested%20with-webdriver.io-%23ea5906)](https://webdriver.io/)
[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat)](https://github.com/prettier/prettier) [![tested with webdriver.io](https://img.shields.io/badge/tested%20with-webdriver.io-%23ea5906)](https://webdriver.io/) [![lerna](https://img.shields.io/badge/maintained%20with-lerna-cc00ff.svg)](https://lerna.js.org/)
12 changes: 10 additions & 2 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
{
"lerna": "2.5.1",
"version": "independent",
"npmClient": "npm",
"packages": [
"elements/*"
],
"version": "1.10.1",
"command": {
"publish": {
"message": "chore(release): publish version bumps"
}
},
"ignoreChanges": [
"elements/*/dist/**/*"
"elements/*/{dist,_temp}/**/*",
"elements/*/{demo,docs,test}/**/*",
"elements/*/*.txt"
]
}
Loading