@patternfly/documentation-framework 5.3.12 → 5.3.14

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.14 (2023-12-14)
7
+
8
+ **Note:** Version bump only for package @patternfly/documentation-framework
9
+
10
+
11
+
12
+
13
+
14
+ ## 5.3.13 (2023-12-13)
15
+
16
+ **Note:** Version bump only for package @patternfly/documentation-framework
17
+
18
+
19
+
20
+
21
+
6
22
  ## 5.3.12 (2023-12-13)
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.12",
4
+ "version": "5.3.14",
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.12",
20
+ "@patternfly/ast-helpers": "^1.3.14",
21
21
  "@reach/router": "npm:@gatsbyjs/reach-router@1.3.9",
22
22
  "autoprefixer": "9.8.6",
23
23
  "babel-loader": "9.1.2",
@@ -33,7 +33,7 @@
33
33
  "file-loader": "6.2.0",
34
34
  "file-saver": "1.3.8",
35
35
  "fs-extra": "9.0.1",
36
- "glob": "8.0.3",
36
+ "glob": "9.0.0",
37
37
  "handlebars": "4.7.7",
38
38
  "hast-to-hyperscript": "9.0.0",
39
39
  "hast-util-to-text": "2.0.0",
@@ -48,10 +48,10 @@
48
48
  "null-loader": "4.0.1",
49
49
  "parse-entities": "2.0.0",
50
50
  "path-browserify": "1.0.1",
51
- "postcss": "7.0.32",
51
+ "postcss": "8.4.32",
52
52
  "postcss-loader": "7.1.0",
53
53
  "process": "^0.11.10",
54
- "puppeteer": "14.3.0",
54
+ "puppeteer": "18.2.0",
55
55
  "puppeteer-cluster": "0.23.0",
56
56
  "react-docgen": "5.3.1",
57
57
  "react-monaco-editor": "^0.51.0",
@@ -63,10 +63,10 @@
63
63
  "remark-parse": "8.0.3",
64
64
  "remark-squeeze-paragraphs": "4.0.0",
65
65
  "responsive-loader": "3.1.2",
66
- "sharp": "0.30.6",
66
+ "sharp": "0.32.6",
67
67
  "style-to-object": "0.3.0",
68
68
  "to-vfile": "6.1.0",
69
- "typedoc": "0.22.X",
69
+ "typedoc": "0.23.0",
70
70
  "typescript": "4.3.5",
71
71
  "unified": "9.1.0",
72
72
  "unist-util-remove": "2.0.0",
@@ -87,5 +87,5 @@
87
87
  "react": "^17.0.0 || ^18.0.0",
88
88
  "react-dom": "^17.0.0 || ^18.0.0"
89
89
  },
90
- "gitHead": "0a6fc15098935cb90ffd25daefbf47fd769d56a1"
90
+ "gitHead": "b6cca3cac4d696d84cd09ffa6f21e29360b7f351"
91
91
  }
@@ -7,7 +7,7 @@ const toVfile = require('to-vfile'); // https://github.com/vfile/vfile
7
7
  const vfileReport = require('vfile-reporter');
8
8
  const yaml = require('js-yaml'); // https://github.com/nodeca/js-yaml
9
9
  const chokidar = require('chokidar');
10
- const { sync } = require('glob');
10
+ const { globSync } = require('glob');
11
11
  const { typecheck } = require('./typecheck');
12
12
  const { makeSlug } = require('../../helpers/slugger');
13
13
  const { liveCodeTypes } = require('../../helpers/liveCodeTypes');
@@ -338,11 +338,11 @@ function getTsDocNameVariant(source) {
338
338
  module.exports = {
339
339
  sourceProps(glob, ignore) {
340
340
  globs.props.push({ glob, ignore });
341
- sync(glob, { ignore }).forEach(sourcePropsFile);
341
+ globSync(glob, { ignore }).forEach(sourcePropsFile);
342
342
  },
343
343
  sourceMD(glob, source, ignore, buildMode) {
344
344
  globs.md.push({ glob, source, ignore });
345
- sync(glob, { ignore }).forEach(file => sourceMDFile(file, source, buildMode));
345
+ globSync(glob, { ignore }).forEach(file => sourceMDFile(file, source, buildMode));
346
346
  },
347
347
  sourceFunctionDocs,
348
348
  writeIndex,
@@ -1,5 +1,5 @@
1
1
  const path = require('path');
2
- const glob = require('glob');
2
+ const { globSync } = require('glob');
3
3
  const ts = require('typescript');
4
4
  const versions = require('../../versions.json');
5
5
 
@@ -32,7 +32,7 @@ declare module '\\*.svg' {
32
32
  `;
33
33
 
34
34
  const reactStylesDir = path.join(require.resolve('@patternfly/react-styles/package.json'), '../');
35
- const reactStyles = glob.sync(path.join(reactStylesDir, 'css/**/*.d.ts'))
35
+ const reactStyles = globSync(path.join(reactStylesDir, 'css/**/*.d.ts'))
36
36
  .map(f => f.replace(reactStylesDir, '@patternfly/react-styles/').replace(/\.d.ts$/, ''));
37
37
  const defaultImports = [
38
38
  'react',