docusaurus-plugin-openapi-docs 0.0.0-707 → 0.0.0-709

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.
@@ -52,7 +52,7 @@ function groupByTags(items, sidebarOptions, options, tags, docPath) {
52
52
  apiTags.push(tag.name);
53
53
  }
54
54
  });
55
- // apiTags = uniq(apiTags.concat(operationTags));
55
+ apiTags = (0, uniq_1.default)(apiTags.concat(operationTags));
56
56
  const basePath = docPath
57
57
  ? outputDir.split(docPath)[1].replace(/^\/+/g, "")
58
58
  : outputDir.slice(outputDir.indexOf("/", 1)).replace(/^\/+/g, "");
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "docusaurus-plugin-openapi-docs",
3
3
  "description": "OpenAPI plugin for Docusaurus.",
4
- "version": "0.0.0-707",
4
+ "version": "0.0.0-709",
5
5
  "license": "MIT",
6
6
  "keywords": [
7
7
  "openapi",
@@ -60,5 +60,5 @@
60
60
  "engines": {
61
61
  "node": ">=14"
62
62
  },
63
- "gitHead": "b2d2231ccee601180601a0bb607f64627df7ea3e"
63
+ "gitHead": "b16649db6ed2f539e0387ea399b695184fca32c7"
64
64
  }
@@ -87,7 +87,7 @@ function groupByTags(
87
87
  apiTags.push(tag.name!);
88
88
  }
89
89
  });
90
- // apiTags = uniq(apiTags.concat(operationTags));
90
+ apiTags = uniq(apiTags.concat(operationTags));
91
91
 
92
92
  const basePath = docPath
93
93
  ? outputDir.split(docPath!)[1].replace(/^\/+/g, "")