@docusaurus/plugin-content-docs 0.0.0-5076 → 0.0.0-5081
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/index.js +1 -3
- package/package.json +9 -9
- package/src/index.ts +3 -3
package/lib/index.js
CHANGED
|
@@ -50,9 +50,7 @@ async function pluginContentDocs(context, options) {
|
|
|
50
50
|
.command(command)
|
|
51
51
|
.arguments('<version>')
|
|
52
52
|
.description(commandDescription)
|
|
53
|
-
.action((version) =>
|
|
54
|
-
(0, cli_1.cliDocsVersionCommand)(version, options, context);
|
|
55
|
-
});
|
|
53
|
+
.action((version) => (0, cli_1.cliDocsVersionCommand)(version, options, context));
|
|
56
54
|
},
|
|
57
55
|
getTranslationFiles({ content }) {
|
|
58
56
|
return (0, translations_1.getLoadedContentTranslationFiles)(content);
|
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-5081",
|
|
4
4
|
"description": "Docs plugin for Docusaurus.",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -25,13 +25,13 @@
|
|
|
25
25
|
},
|
|
26
26
|
"license": "MIT",
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@docusaurus/core": "0.0.0-
|
|
29
|
-
"@docusaurus/logger": "0.0.0-
|
|
30
|
-
"@docusaurus/mdx-loader": "0.0.0-
|
|
31
|
-
"@docusaurus/module-type-aliases": "0.0.0-
|
|
32
|
-
"@docusaurus/types": "0.0.0-
|
|
33
|
-
"@docusaurus/utils": "0.0.0-
|
|
34
|
-
"@docusaurus/utils-validation": "0.0.0-
|
|
28
|
+
"@docusaurus/core": "0.0.0-5081",
|
|
29
|
+
"@docusaurus/logger": "0.0.0-5081",
|
|
30
|
+
"@docusaurus/mdx-loader": "0.0.0-5081",
|
|
31
|
+
"@docusaurus/module-type-aliases": "0.0.0-5081",
|
|
32
|
+
"@docusaurus/types": "0.0.0-5081",
|
|
33
|
+
"@docusaurus/utils": "0.0.0-5081",
|
|
34
|
+
"@docusaurus/utils-validation": "0.0.0-5081",
|
|
35
35
|
"@types/react-router-config": "^5.0.6",
|
|
36
36
|
"combine-promises": "^1.1.0",
|
|
37
37
|
"fs-extra": "^10.1.0",
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"engines": {
|
|
60
60
|
"node": ">=16.14"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "aff92b3be3392360acf68ef8e5eb8a7170f56aac"
|
|
63
63
|
}
|
package/src/index.ts
CHANGED
|
@@ -100,9 +100,9 @@ export default async function pluginContentDocs(
|
|
|
100
100
|
.command(command)
|
|
101
101
|
.arguments('<version>')
|
|
102
102
|
.description(commandDescription)
|
|
103
|
-
.action((version: unknown) =>
|
|
104
|
-
cliDocsVersionCommand(version, options, context)
|
|
105
|
-
|
|
103
|
+
.action((version: unknown) =>
|
|
104
|
+
cliDocsVersionCommand(version, options, context),
|
|
105
|
+
);
|
|
106
106
|
},
|
|
107
107
|
|
|
108
108
|
getTranslationFiles({content}) {
|