@next-core/build-next-bricks 1.14.1 → 1.14.3

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@next-core/build-next-bricks",
3
- "version": "1.14.1",
3
+ "version": "1.14.3",
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",
@@ -31,8 +31,8 @@
31
31
  "node": ">=16"
32
32
  },
33
33
  "dependencies": {
34
- "@babel/parser": "^7.22.15",
35
- "@babel/traverse": "^7.22.15",
34
+ "@babel/parser": "^7.23.0",
35
+ "@babel/traverse": "^7.23.2",
36
36
  "@svgr/webpack": "^8.1.0",
37
37
  "babel-loader": "^9.1.3",
38
38
  "css-loader": "^6.8.1",
@@ -41,15 +41,15 @@
41
41
  "doctrine": "^3.0.0",
42
42
  "lodash": "^4.17.21",
43
43
  "mini-css-extract-plugin": "^2.7.6",
44
- "postcss": "^8.4.29",
44
+ "postcss": "^8.4.31",
45
45
  "postcss-loader": "^7.3.3",
46
- "postcss-preset-env": "^9.1.3",
46
+ "postcss-preset-env": "^9.2.0",
47
47
  "style-loader": "^3.3.3",
48
48
  "typescript": "^5.2.2",
49
- "webpack": "^5.88.2"
49
+ "webpack": "^5.89.0"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@next-core/brick-manifest": "^0.5.1"
53
53
  },
54
- "gitHead": "3aa3336e81687b4c2e3e633c02cc2c802a1201d8"
54
+ "gitHead": "0cf0083bfde5b06e3aa4a8ef6af809de6eb9450a"
55
55
  }
@@ -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);