@docusaurus/plugin-content-docs 0.0.0-5202 → 0.0.0-5205
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/lib/server-export.js +3 -0
- package/package.json +9 -9
- package/src/server-export.ts +4 -0
package/lib/server-export.js
CHANGED
|
@@ -8,6 +8,9 @@
|
|
|
8
8
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
9
|
exports.readVersionNames = exports.getVersionBanner = exports.getVersionBadge = exports.getDefaultVersionBanner = exports.filterVersions = exports.VERSIONS_JSON_FILE = exports.VERSIONED_SIDEBARS_DIR = exports.VERSIONED_DOCS_DIR = exports.CURRENT_VERSION_NAME = void 0;
|
|
10
10
|
// APIs available to Node.js
|
|
11
|
+
// Those are undocumented but used by some third-party plugins
|
|
12
|
+
// For this reason it's preferable to avoid doing breaking changes
|
|
13
|
+
// See also https://github.com/facebook/docusaurus/pull/6477
|
|
11
14
|
var constants_1 = require("./constants");
|
|
12
15
|
Object.defineProperty(exports, "CURRENT_VERSION_NAME", { enumerable: true, get: function () { return constants_1.CURRENT_VERSION_NAME; } });
|
|
13
16
|
Object.defineProperty(exports, "VERSIONED_DOCS_DIR", { enumerable: true, get: function () { return constants_1.VERSIONED_DOCS_DIR; } });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@docusaurus/plugin-content-docs",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-5205",
|
|
4
4
|
"description": "Docs plugin for Docusaurus.",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -34,13 +34,13 @@
|
|
|
34
34
|
},
|
|
35
35
|
"license": "MIT",
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@docusaurus/core": "0.0.0-
|
|
38
|
-
"@docusaurus/logger": "0.0.0-
|
|
39
|
-
"@docusaurus/mdx-loader": "0.0.0-
|
|
40
|
-
"@docusaurus/module-type-aliases": "0.0.0-
|
|
41
|
-
"@docusaurus/types": "0.0.0-
|
|
42
|
-
"@docusaurus/utils": "0.0.0-
|
|
43
|
-
"@docusaurus/utils-validation": "0.0.0-
|
|
37
|
+
"@docusaurus/core": "0.0.0-5205",
|
|
38
|
+
"@docusaurus/logger": "0.0.0-5205",
|
|
39
|
+
"@docusaurus/mdx-loader": "0.0.0-5205",
|
|
40
|
+
"@docusaurus/module-type-aliases": "0.0.0-5205",
|
|
41
|
+
"@docusaurus/types": "0.0.0-5205",
|
|
42
|
+
"@docusaurus/utils": "0.0.0-5205",
|
|
43
|
+
"@docusaurus/utils-validation": "0.0.0-5205",
|
|
44
44
|
"@types/react-router-config": "^5.0.6",
|
|
45
45
|
"combine-promises": "^1.1.0",
|
|
46
46
|
"fs-extra": "^10.1.0",
|
|
@@ -67,5 +67,5 @@
|
|
|
67
67
|
"engines": {
|
|
68
68
|
"node": ">=16.14"
|
|
69
69
|
},
|
|
70
|
-
"gitHead": "
|
|
70
|
+
"gitHead": "474de12961ec6aa6a35511d7977f2bd859b0a8e0"
|
|
71
71
|
}
|
package/src/server-export.ts
CHANGED
|
@@ -6,6 +6,10 @@
|
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
// APIs available to Node.js
|
|
9
|
+
// Those are undocumented but used by some third-party plugins
|
|
10
|
+
// For this reason it's preferable to avoid doing breaking changes
|
|
11
|
+
// See also https://github.com/facebook/docusaurus/pull/6477
|
|
12
|
+
|
|
9
13
|
export {
|
|
10
14
|
CURRENT_VERSION_NAME,
|
|
11
15
|
VERSIONED_DOCS_DIR,
|