@docusaurus/plugin-content-docs 0.0.0-4795 → 0.0.0-4798

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": "@docusaurus/plugin-content-docs",
3
- "version": "0.0.0-4795",
3
+ "version": "0.0.0-4798",
4
4
  "description": "Docs plugin for Docusaurus.",
5
5
  "main": "lib/index.js",
6
6
  "exports": {
@@ -23,11 +23,11 @@
23
23
  },
24
24
  "license": "MIT",
25
25
  "dependencies": {
26
- "@docusaurus/core": "0.0.0-4795",
27
- "@docusaurus/logger": "0.0.0-4795",
28
- "@docusaurus/mdx-loader": "0.0.0-4795",
29
- "@docusaurus/utils": "0.0.0-4795",
30
- "@docusaurus/utils-validation": "0.0.0-4795",
26
+ "@docusaurus/core": "0.0.0-4798",
27
+ "@docusaurus/logger": "0.0.0-4798",
28
+ "@docusaurus/mdx-loader": "0.0.0-4798",
29
+ "@docusaurus/utils": "0.0.0-4798",
30
+ "@docusaurus/utils-validation": "0.0.0-4798",
31
31
  "combine-promises": "^1.1.0",
32
32
  "fs-extra": "^10.0.1",
33
33
  "import-fresh": "^3.3.0",
@@ -39,8 +39,8 @@
39
39
  "webpack": "^5.70.0"
40
40
  },
41
41
  "devDependencies": {
42
- "@docusaurus/module-type-aliases": "0.0.0-4795",
43
- "@docusaurus/types": "0.0.0-4795",
42
+ "@docusaurus/module-type-aliases": "0.0.0-4798",
43
+ "@docusaurus/types": "0.0.0-4798",
44
44
  "@types/js-yaml": "^4.0.5",
45
45
  "@types/picomatch": "^2.3.0",
46
46
  "commander": "^5.1.0",
@@ -56,5 +56,5 @@
56
56
  "engines": {
57
57
  "node": ">=14"
58
58
  },
59
- "gitHead": "6d8d64febd22e86ef72b2e7de915bb1bab2beead"
59
+ "gitHead": "07a0df4850e335427cfa6c233d1726febc0995cc"
60
60
  }
@@ -647,13 +647,11 @@ declare module '@docusaurus/plugin-content-docs/client' {
647
647
  sidebars?: {[sidebarId: string]: GlobalSidebar};
648
648
  };
649
649
 
650
- export type GlobalSidebarLink = {
651
- label: string;
652
- path: string;
653
- };
654
-
655
650
  export type GlobalSidebar = {
656
- link?: GlobalSidebarLink;
651
+ link?: {
652
+ label: string;
653
+ path: string;
654
+ };
657
655
  // ... we may add other things here later
658
656
  };
659
657
  export type GlobalPluginData = {