@patternfly/documentation-framework 5.3.24 → 5.3.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## 5.3.26 (2024-02-01)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## 5.3.25 (2024-01-30)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
## 5.3.24 (2024-01-30)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @patternfly/documentation-framework
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@patternfly/documentation-framework",
|
|
3
3
|
"description": "A framework to build documentation for PatternFly.",
|
|
4
|
-
"version": "5.3.
|
|
4
|
+
"version": "5.3.26",
|
|
5
5
|
"author": "Red Hat",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"private": false,
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"@babel/plugin-transform-react-jsx": "7.17.12",
|
|
18
18
|
"@babel/preset-env": "7.18.2",
|
|
19
19
|
"@mdx-js/util": "1.6.16",
|
|
20
|
-
"@patternfly/ast-helpers": "^1.3.
|
|
20
|
+
"@patternfly/ast-helpers": "^1.3.26",
|
|
21
21
|
"@reach/router": "npm:@gatsbyjs/reach-router@1.3.9",
|
|
22
22
|
"autoprefixer": "9.8.6",
|
|
23
23
|
"babel-loader": "9.1.2",
|
|
@@ -43,8 +43,6 @@
|
|
|
43
43
|
"mdast-util-to-hast": "9.1.1",
|
|
44
44
|
"mdurl": "1.0.1",
|
|
45
45
|
"mini-css-extract-plugin": "2.7.5",
|
|
46
|
-
"monaco-editor": "0.34.1",
|
|
47
|
-
"monaco-editor-webpack-plugin": "7.0.1",
|
|
48
46
|
"null-loader": "4.0.1",
|
|
49
47
|
"parse-entities": "2.0.0",
|
|
50
48
|
"path-browserify": "1.0.1",
|
|
@@ -54,7 +52,6 @@
|
|
|
54
52
|
"puppeteer": "19.11.1",
|
|
55
53
|
"puppeteer-cluster": "0.23.0",
|
|
56
54
|
"react-docgen": "5.3.1",
|
|
57
|
-
"react-monaco-editor": "^0.51.0",
|
|
58
55
|
"react-ssr-prepass": "1.5.0",
|
|
59
56
|
"remark-footnotes": "1.0.0",
|
|
60
57
|
"remark-frontmatter": "2.0.0",
|
|
@@ -81,11 +78,11 @@
|
|
|
81
78
|
},
|
|
82
79
|
"peerDependencies": {
|
|
83
80
|
"@patternfly/patternfly": "5.2.0-prerelease.7",
|
|
84
|
-
"@patternfly/react-code-editor": "5.2.0-prerelease.
|
|
85
|
-
"@patternfly/react-core": "5.2.0-prerelease.
|
|
86
|
-
"@patternfly/react-table": "5.2.0-prerelease.
|
|
81
|
+
"@patternfly/react-code-editor": "5.2.0-prerelease.50",
|
|
82
|
+
"@patternfly/react-core": "5.2.0-prerelease.49",
|
|
83
|
+
"@patternfly/react-table": "5.2.0-prerelease.49",
|
|
87
84
|
"react": "^17.0.0 || ^18.0.0",
|
|
88
85
|
"react-dom": "^17.0.0 || ^18.0.0"
|
|
89
86
|
},
|
|
90
|
-
"gitHead": "
|
|
87
|
+
"gitHead": "d4857b35629a5cd73c4fcfec31c6acf238d85fa1"
|
|
91
88
|
}
|
|
@@ -2,7 +2,6 @@ const path = require('path');
|
|
|
2
2
|
const webpack = require('webpack');
|
|
3
3
|
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
|
|
4
4
|
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
|
5
|
-
const MonacoWebpackPlugin = require('monaco-editor-webpack-plugin');
|
|
6
5
|
|
|
7
6
|
module.exports = (_env, argv) => {
|
|
8
7
|
const {
|
|
@@ -155,9 +154,6 @@ module.exports = (_env, argv) => {
|
|
|
155
154
|
patterns: [
|
|
156
155
|
{ from: path.join(__dirname, '../../assets'), to: 'assets' }
|
|
157
156
|
]
|
|
158
|
-
}),
|
|
159
|
-
new MonacoWebpackPlugin({
|
|
160
|
-
globalAPI: true,
|
|
161
157
|
})
|
|
162
158
|
],
|
|
163
159
|
stats: 'minimal'
|