Skip to content

Commit

Permalink
fix: prepare org for component groups release (patternfly#3822)
Browse files Browse the repository at this point in the history
* fix: prepare org for component groups release

* bump to component groups to 5.0.0
  • Loading branch information
nicolethoen authored and edonehoo committed Feb 5, 2024
1 parent 7163a6d commit f0f4ae7
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 14 deletions.
1 change: 1 addition & 0 deletions packages/documentation-framework/versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"@patternfly/react-drag-drop": "5.0.0-alpha.0",
"@patternfly/react-tokens": "5.1.1",
"@patternfly/react-catalog-view-extension": "5.0.0",
"@patternfly/react-component-groups": "5.0.0",
"@patternfly/react-console": "5.0.0",
"@patternfly/react-log-viewer": "5.0.0",
"@patternfly/react-topology": "5.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/documentation-site/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"@patternfly/react-log-viewer": "5.1.0-prerelease.1",
"@patternfly/react-topology": "5.2.0-prerelease.1",
"@patternfly/react-user-feedback": "5.0.0",
"@patternfly/react-component-groups": "5.0.0-prerelease.5",
"@patternfly/react-component-groups": "5.0.0",
"@patternfly/react-virtualized-extension": "5.0.0",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ To help provide a high-level view of what's new, we've pulled together the major

- PatternFly extensions
- [@patternfly/react-topology@5.1.0](https://www.npmjs.com/package/@patternfly/react-topology/v/5.1.0) ([changelog](https://github.com/patternfly/react-topology/releases/tag/v5.1.0))
- [@patternfly/react-component-groups@5.0.0](https://www.npmjs.com/package/@patternfly/react-component-groups/v/5.0.0) ([changelog](https://github.com/patternfly/react-component-groups/releases/tag/v5.0.0))

### Right-to-left language support

Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -136,22 +136,22 @@ module.exports = (sourceMD, sourceProps, sourceFunctionDocs) => {
sourceMD(path.join(reactUserFeedbackPath, '/**/examples/*.md'), 'react');
sourceMD(path.join(reactUserFeedbackPath, '/**/design-guidelines/*.md'), 'design-guidelines');

// Prerelease sections:
// Component Groups extension (Currently in PRERELEASE, so only include in PRERELEASE builds)
if (process.env.PRERELEASE === 'true') {
const reactComponentGroupsPath = require
const reactComponentGroupsPath = require
.resolve('@patternfly/react-component-groups/package.json')
.replace('package.json', 'src');

const reactComponentGroupsBase = require
const reactComponentGroupsBase = require
.resolve('@patternfly/react-component-groups/package.json')
.replace('package.json', 'patternfly-docs/content/extensions/component-groups');

sourceProps(path.join(reactComponentGroupsPath, '/**/*.tsx'), reactPropsIgnore);
sourceMD(path.join(reactComponentGroupsBase, '/**/*.md'), 'react');
sourceMD(path.join(reactComponentGroupsPath, '/**/examples/*.md'), 'react');
sourceMD(path.join(reactComponentGroupsPath, '/**/design-guidelines/*.md'), 'design-guidelines');
sourceProps(path.join(reactComponentGroupsPath, '/**/*.tsx'), reactPropsIgnore);
sourceMD(path.join(reactComponentGroupsBase, '/**/*.md'), 'react');
sourceMD(path.join(reactComponentGroupsPath, '/**/examples/*.md'), 'react');
sourceMD(path.join(reactComponentGroupsPath, '/**/design-guidelines/*.md'), 'design-guidelines');

// Prerelease sections:
// Component Groups extension (Currently in PRERELEASE, so only include in PRERELEASE builds)
if (process.env.PRERELEASE === 'true') {
const reactVirtualizedTablePath = require
.resolve('@patternfly/react-virtualized-extension/package.json')
.replace('package.json', 'src');
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2191,10 +2191,10 @@
react-dropzone "14.2.3"
tslib "^2.5.0"

"@patternfly/[email protected]-prerelease.5":
version "5.0.0-prerelease.5"
resolved "https://registry.yarnpkg.com/@patternfly/react-component-groups/-/react-component-groups-5.0.0-prerelease.5.tgz#88880e550ab23d6f591c24dbc11bda1829fdbeb8"
integrity sha512-LsOUwn4ldocLTx2M/XE4y72RQ5O5ZF5qfHoWRa7WusgmAI06l/fAhg8Et6teiDR9PopQiIiIVFqlBljhGrmKww==
"@patternfly/[email protected]":
version "5.0.0"
resolved "https://registry.yarnpkg.com/@patternfly/react-component-groups/-/react-component-groups-5.0.0.tgz#d11229729ac0d40874262956a57fb6496501fa6c"
integrity sha512-ON4h4SKOCgLRgZLd/FOj44wU19ytvFPjflxPSYU0KfCWlVgb6F62+l316/Va/tzDo/AwZypnUxOEksXDv+C2+A==
dependencies:
"@patternfly/react-core" "^5.1.1"
"@patternfly/react-icons" "^5.1.1"
Expand Down

0 comments on commit f0f4ae7

Please sign in to comment.