@ckeditor/ckeditor5-dev-docs 33.0.0 → 34.0.0

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.
@@ -41,7 +41,8 @@ module.exports = async function build( config ) {
41
41
  ],
42
42
  modifierTags: [
43
43
  '@publicApi',
44
- '@skipSource'
44
+ '@skipSource',
45
+ '@internal'
45
46
  ],
46
47
  plugin: [
47
48
  // Fixes `"name": 'default" in the output project.
@@ -42,6 +42,12 @@ function isReflectionValid( reflection ) {
42
42
  * @returns {Boolean}
43
43
  */
44
44
  function isIdentifierValid( reflection, identifier ) {
45
+ // We don't want to validate inherited identifiers, because they should be checked only once in the base class.
46
+ // Inherited reflections could contain identifiers (links) that are valid only in the base class and not in the derived class.
47
+ if ( reflection.inheritedFrom ) {
48
+ return true;
49
+ }
50
+
45
51
  const absoluteIdentifier = isAbsoluteIdentifier( identifier ) ?
46
52
  identifier :
47
53
  toAbsoluteIdentifier( reflection, identifier );
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-dev-docs",
3
- "version": "33.0.0",
3
+ "version": "34.0.0",
4
4
  "description": "Tasks used to build and verify the documentation for CKEditor 5.",
5
5
  "keywords": [],
6
6
  "main": "lib/index.js",
7
7
  "dependencies": {
8
- "@ckeditor/ckeditor5-dev-utils": "^33.0.0",
9
- "@ckeditor/jsdoc-plugins": "^33.0.0",
10
- "@ckeditor/typedoc-plugins": "^33.0.0",
8
+ "@ckeditor/ckeditor5-dev-utils": "^34.0.0",
9
+ "@ckeditor/jsdoc-plugins": "^34.0.0",
10
+ "@ckeditor/typedoc-plugins": "^34.0.0",
11
11
  "fast-glob": "^3.2.4",
12
12
  "fs-extra": "^9.0.0",
13
13
  "jsdoc": "ckeditor/jsdoc#fixed-trailing-comment-doclets",