@next-core/build-next-bricks 1.14.1 → 1.14.2
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/package.json +2 -2
- package/src/makeBrickManifest.js +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@next-core/build-next-bricks",
|
|
3
|
-
"version": "1.14.
|
|
3
|
+
"version": "1.14.2",
|
|
4
4
|
"description": "Build next bricks",
|
|
5
5
|
"homepage": "https://github.com/easyops-cn/next-core/tree/v3/packages/build-next-bricks",
|
|
6
6
|
"license": "GPL-3.0",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@next-core/brick-manifest": "^0.5.1"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "70bf6b500764afe0d97a7d8360f1407b92ad54a2"
|
|
55
55
|
}
|
package/src/makeBrickManifest.js
CHANGED
|
@@ -227,6 +227,9 @@ function scanFields(manifest, nodes, source) {
|
|
|
227
227
|
};
|
|
228
228
|
const docComment = parseDocComment(node, source);
|
|
229
229
|
if (docComment) {
|
|
230
|
+
if (findTag(docComment.tags, "internal")) {
|
|
231
|
+
break;
|
|
232
|
+
}
|
|
230
233
|
prop.description = docComment.description;
|
|
231
234
|
prop.required = getBooleanTag(docComment.tags, "required");
|
|
232
235
|
prop.deprecated = getDeprecatedInfo(docComment.tags);
|