Skip to content

Commit 7fce04a

Browse files
authored
fix(deps): address missing and outdated dependencies (#4921)
1 parent 0ffbee0 commit 7fce04a

File tree

5 files changed

+759
-115
lines changed

5 files changed

+759
-115
lines changed

package.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,6 @@
4141
"@patternfly/react-code-editor": "^6.5.0-prerelease.26",
4242
"@patternfly/react-core": "^6.5.0-prerelease.24",
4343
"@patternfly/react-table": "^6.5.0-prerelease.24",
44-
"@rspack/cli": "^1.5.6",
45-
"@rspack/core": "^1.5.6",
46-
"@rspack/dev-server": "^1.1.4",
4744
"glob": "^8.1.0",
4845
"lerna": "^6.4.1",
4946
"monaco-editor": "0.54.0",

packages/documentation-framework/package.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
"@mdx-js/util": "1.6.16",
1515
"@patternfly/ast-helpers": "^1.4.0-alpha.334",
1616
"@reach/router": "npm:@gatsbyjs/[email protected]",
17+
"@rspack/core": "^1.5.6",
18+
"@rspack/dev-server": "^1.1.4",
1719
"autoprefixer": "10.4.19",
1820
"babel-loader": "^9.1.3",
1921
"camelcase-css": "2.0.1",
@@ -22,17 +24,17 @@
2224
"commander": "4.1.1",
2325
"css-loader": "6.7.3",
2426
"detab": "2.0.3",
25-
"express": "4.21.2",
27+
"express": "4.22.0",
2628
"file-loader": "6.2.0",
2729
"file-saver": "1.3.8",
2830
"fs-extra": "9.0.1",
29-
"glob": "11.0.3",
31+
"glob": "11.1.0",
3032
"handlebars": "4.7.7",
3133
"hast-to-hyperscript": "9.0.0",
3234
"hast-util-to-text": "2.0.0",
3335
"html-formatter": "0.1.9",
3436
"html-webpack-plugin": "5.5.0",
35-
"js-yaml": "3.14.0",
37+
"js-yaml": "4.1.1",
3638
"mdast-util-to-hast": "9.1.1",
3739
"mdurl": "1.0.1",
3840
"null-loader": "4.0.1",
@@ -61,7 +63,7 @@
6163
"unist-util-visit": "2.0.3",
6264
"url-loader": "4.1.0",
6365
"vfile-reporter": "6.0.1",
64-
"webpack-bundle-analyzer": "4.10.2",
66+
"webpack-bundle-analyzer": "5.2.0",
6567
"webpack-dev-server": "5.2.2",
6668
"webpack-merge": "5.8.0"
6769
},

packages/documentation-framework/scripts/md/parseMD.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ function toReactComponent(mdFilePath, source, buildMode) {
4444
if (!yamlNode) {
4545
return file.info('no frontmatter, skipping');
4646
}
47-
frontmatter = yaml.safeLoad(yamlNode.value);
47+
frontmatter = yaml.load(yamlNode.value);
4848

4949
// Fail early
5050
if (!frontmatter.id) {

packages/site/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
},
1616
"dependencies": {
1717
"@patternfly/patternfly-doc-core": "^1.15.5",
18-
"astro": "^5.15.9"
18+
"astro": "^5.16.10"
1919
},
2020
"devDependencies": {
2121
"tsx": "^4.19.0",

0 commit comments

Comments
 (0)