Skip to content
Merged
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
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"url": "https://github.com/patternfly/patternfly-react.git"
},
"engines": {
"node": ">=14.0.0",
"node": ">=18.0.0",
"yarn": ">=1.6.0"
},
"keywords": [
Expand Down Expand Up @@ -90,7 +90,7 @@
"start:cypress": "lerna run cypress:open",
"start:demo-app": "lerna run start:demo-app --stream",
"start:demo-app:hot": "lerna run start:demo-app:hot --stream",
"test": "TZ=EST jest packages",
"test": "TZ=EST LC_ALL=en_US.UTF8 jest packages",
"test:a11y": "lerna run test:a11y --stream",
"test:integration": "yarn workspace @patternfly/react-integration test:integration",
"uninstall": "find . -name node_modules -type d | xargs rm -rf",
Expand Down
13 changes: 12 additions & 1 deletion packages/react-core/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,18 @@ $ git checkout -b my-branch -t upstream/main
ComponentName.md - Component Docs
```

4. Develop your component. After development is complete, ensure tests and lint standards pass.
4. Develop your component.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍


While developing, you can run the patternfly-react workspace to view the component docs with live examples.

**Note:** Be sure you are using node version >= 18.0.0

```bash
# Start up the workspace locally on port 8002
yarn install && yarn start
```

5. After development is complete, ensure tests and lint standards pass.

```text
$ yarn test
Expand Down