@patternfly/react-code-editor 5.0.0-alpha.46 → 5.0.0-alpha.48

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,16 @@
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.0.0-alpha.48](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-code-editor@5.0.0-alpha.47...@patternfly/react-code-editor@5.0.0-alpha.48) (2023-03-24)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **CodeEditor:** fix typo in README ([#8849](https://github.com/patternfly/patternfly-react/issues/8849)) ([4579484](https://github.com/patternfly/patternfly-react/commit/4579484257d866e75b22325349f19940fb17c631))
11
+
12
+ # [5.0.0-alpha.47](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-code-editor@5.0.0-alpha.46...@patternfly/react-code-editor@5.0.0-alpha.47) (2023-03-24)
13
+
14
+ **Note:** Version bump only for package @patternfly/react-code-editor
15
+
6
16
  # [5.0.0-alpha.46](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-code-editor@5.0.0-alpha.45...@patternfly/react-code-editor@5.0.0-alpha.46) (2023-03-24)
7
17
 
8
18
  **Note:** Version bump only for package @patternfly/react-code-editor
package/README.md CHANGED
@@ -72,7 +72,7 @@ Next, replace all of the `react-script` references in your `package.json` `scrip
72
72
  }
73
73
  ```
74
74
 
75
- Next, create a `config-overries.js` file at the root of your project and add the following:
75
+ Next, create a `config-overrides.js` file at the root of your project and add the following:
76
76
 
77
77
  ```javascript
78
78
  const MonacoWebpackPlugin = require('monaco-editor-webpack-plugin');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@patternfly/react-code-editor",
3
- "version": "5.0.0-alpha.46",
3
+ "version": "5.0.0-alpha.48",
4
4
  "description": "This package provides a PatternFly wrapper for the Monaco code editor\n",
5
5
  "main": "dist/js/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -30,7 +30,7 @@
30
30
  "clean": "rimraf dist"
31
31
  },
32
32
  "dependencies": {
33
- "@patternfly/react-core": "^5.0.0-alpha.46",
33
+ "@patternfly/react-core": "^5.0.0-alpha.47",
34
34
  "@patternfly/react-icons": "^5.0.0-alpha.6",
35
35
  "@patternfly/react-styles": "^5.0.0-alpha.5",
36
36
  "react-dropzone": "14.2.3",
@@ -45,5 +45,5 @@
45
45
  "rimraf": "^2.6.2",
46
46
  "typescript": "^4.7.4"
47
47
  },
48
- "gitHead": "7ec2df690981fddd6f8be3ff7d5f21aa497e82b8"
48
+ "gitHead": "92282954a9826561cdf3b5e694659addcdcea233"
49
49
  }