@next-core/build-config-factory 2.18.46 → 2.18.47

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,17 @@
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
+ ## [2.18.47](https://github.com/easyops-cn/next-core/compare/@next-core/build-config-factory@2.18.46...@next-core/build-config-factory@2.18.47) (2022-06-14)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * typo ([7e942d3](https://github.com/easyops-cn/next-core/commit/7e942d363d9af86875b10a167b50a5d0972835e0))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [2.18.46](https://github.com/easyops-cn/next-core/compare/@next-core/build-config-factory@2.18.45...@next-core/build-config-factory@2.18.46) (2022-06-10)
7
18
 
8
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@next-core/build-config-factory",
3
- "version": "2.18.46",
3
+ "version": "2.18.47",
4
4
  "description": "build config factory",
5
5
  "homepage": "https://github.com/easyops-cn/next-core/tree/master/packages/build-config-factory",
6
6
  "license": "GPL-3.0",
@@ -37,5 +37,5 @@
37
37
  "typedoc": "^0.19.2",
38
38
  "typedoc-plugin-no-inherit": "^1.2.2"
39
39
  },
40
- "gitHead": "9ae0cc76cd7b13dd781b0209f1b92dc1c8b317eb"
40
+ "gitHead": "fc509c856420d5385b85dc8918692221e9aa30e6"
41
41
  }
@@ -76,7 +76,7 @@ function convertTagsToMapByFields(tags, fields) {
76
76
  let specialField;
77
77
  // typedoc 读取到的 tag 都为小写,不是驼峰的形式,这里特殊处理下最终文档生成驼峰的形式
78
78
  if (
79
- (specialField = ["editorProps", "groupI18n"].find(
79
+ (specialField = ["editorProps", "groupI18N"].find(
80
80
  (name) => name.toLowerCase() === curr.tag
81
81
  ))
82
82
  ) {