@strapi/plugin-documentation 4.2.0-beta.4 → 4.2.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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@strapi/plugin-documentation",
|
|
3
|
-
"version": "4.2.0
|
|
3
|
+
"version": "4.2.0",
|
|
4
4
|
"description": "Create an OpenAPI Document and visualize your API with SWAGGER UI.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"test": "echo \"no tests yet\""
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@strapi/helper-plugin": "4.2.0
|
|
28
|
-
"@strapi/utils": "4.2.0
|
|
27
|
+
"@strapi/helper-plugin": "4.2.0",
|
|
28
|
+
"@strapi/utils": "4.2.0",
|
|
29
29
|
"bcryptjs": "2.4.3",
|
|
30
30
|
"cheerio": "^1.0.0-rc.5",
|
|
31
31
|
"fs-extra": "10.0.0",
|
|
@@ -57,5 +57,5 @@
|
|
|
57
57
|
"description": "Create an OpenAPI Document and visualize your API with SWAGGER UI.",
|
|
58
58
|
"kind": "plugin"
|
|
59
59
|
},
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "12c8ee3b2d95fe417de4d939db0311a0513bd8da"
|
|
61
61
|
}
|
|
@@ -49,7 +49,7 @@ module.exports = {
|
|
|
49
49
|
.getDocumentationVersion();
|
|
50
50
|
|
|
51
51
|
const openAPISpecsPath = path.join(
|
|
52
|
-
strapi.dirs.
|
|
52
|
+
strapi.dirs.extensions,
|
|
53
53
|
'documentation',
|
|
54
54
|
'documentation',
|
|
55
55
|
version,
|
|
@@ -69,7 +69,7 @@ module.exports = {
|
|
|
69
69
|
|
|
70
70
|
try {
|
|
71
71
|
const layoutPath = path.resolve(
|
|
72
|
-
strapi.dirs.
|
|
72
|
+
strapi.dirs.extensions,
|
|
73
73
|
'documentation',
|
|
74
74
|
'public',
|
|
75
75
|
'index.html'
|
|
@@ -81,11 +81,7 @@ module.exports = {
|
|
|
81
81
|
ctx.url = path.basename(`${ctx.url}/index.html`);
|
|
82
82
|
|
|
83
83
|
try {
|
|
84
|
-
const staticFolder = path.resolve(
|
|
85
|
-
strapi.dirs.app.extensions,
|
|
86
|
-
'documentation',
|
|
87
|
-
'public'
|
|
88
|
-
);
|
|
84
|
+
const staticFolder = path.resolve(strapi.dirs.extensions, 'documentation', 'public');
|
|
89
85
|
return koaStatic(staticFolder)(ctx, next);
|
|
90
86
|
} catch (e) {
|
|
91
87
|
strapi.log.error(e);
|
|
@@ -120,7 +116,7 @@ module.exports = {
|
|
|
120
116
|
|
|
121
117
|
try {
|
|
122
118
|
const layoutPath = path.resolve(
|
|
123
|
-
strapi.dirs.
|
|
119
|
+
strapi.dirs.extensions,
|
|
124
120
|
'documentation',
|
|
125
121
|
'public',
|
|
126
122
|
'login.html'
|
|
@@ -131,7 +127,7 @@ module.exports = {
|
|
|
131
127
|
ctx.url = path.basename(`${ctx.url}/login.html`);
|
|
132
128
|
|
|
133
129
|
try {
|
|
134
|
-
const staticFolder = path.resolve(strapi.dirs.
|
|
130
|
+
const staticFolder = path.resolve(strapi.dirs.extensions, 'documentation', 'public');
|
|
135
131
|
return koaStatic(staticFolder)(ctx, next);
|
|
136
132
|
} catch (e) {
|
|
137
133
|
strapi.log.error(e);
|
|
@@ -17,12 +17,11 @@ module.exports = ({ strapi }) => {
|
|
|
17
17
|
},
|
|
18
18
|
|
|
19
19
|
getFullDocumentationPath() {
|
|
20
|
-
return path.join(strapi.dirs.
|
|
20
|
+
return path.join(strapi.dirs.extensions, 'documentation', 'documentation');
|
|
21
21
|
},
|
|
22
22
|
|
|
23
23
|
getCustomDocumentationPath() {
|
|
24
|
-
|
|
25
|
-
return path.join(strapi.dirs.app.extensions, 'documentation', 'config', 'settings.json');
|
|
24
|
+
return path.join(strapi.dirs.extensions, 'documentation', 'config', 'settings.json');
|
|
26
25
|
},
|
|
27
26
|
|
|
28
27
|
getDocumentationVersions() {
|
|
@@ -72,10 +71,10 @@ module.exports = ({ strapi }) => {
|
|
|
72
71
|
*/
|
|
73
72
|
getApiDocumentationPath(api) {
|
|
74
73
|
if (api.getter === 'plugin') {
|
|
75
|
-
return path.join(strapi.dirs.
|
|
74
|
+
return path.join(strapi.dirs.extensions, api.name, 'documentation');
|
|
76
75
|
}
|
|
77
76
|
|
|
78
|
-
return path.join(strapi.dirs.
|
|
77
|
+
return path.join(strapi.dirs.api, api.name, 'documentation');
|
|
79
78
|
},
|
|
80
79
|
|
|
81
80
|
async deleteDocumentation(version) {
|
package/yarn-error.log
DELETED
|
@@ -1,95 +0,0 @@
|
|
|
1
|
-
Arguments:
|
|
2
|
-
/Users/alex/.nvm/versions/node/v16.13.2/bin/node /Users/alex/.nvm/versions/node/v16.13.2/bin/yarn
|
|
3
|
-
|
|
4
|
-
PATH:
|
|
5
|
-
/Users/alex/.nvm/versions/node/v16.13.2/bin:/Users/alex/.nvm/versions/node/v18.1.0/bin:/Users/alex/.nvm/versions/node/v16.13.2/bin:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/go/bin:/Users/alex/.nvm/versions/node/v16.13.2/bin:/opt/homebrew/bin:/opt/homebrew/sbin:/Users/alex/.yarn/bin:/Users/alex/.yarn/bin
|
|
6
|
-
|
|
7
|
-
Yarn version:
|
|
8
|
-
1.22.17
|
|
9
|
-
|
|
10
|
-
Node version:
|
|
11
|
-
16.13.2
|
|
12
|
-
|
|
13
|
-
Platform:
|
|
14
|
-
darwin arm64
|
|
15
|
-
|
|
16
|
-
Trace:
|
|
17
|
-
SyntaxError: /Users/alex/dev/strapi/strapi/packages/plugins/documentation/package.json: Unexpected token < in JSON at position 1187
|
|
18
|
-
at JSON.parse (<anonymous>)
|
|
19
|
-
at /Users/alex/.nvm/versions/node/v16.13.2/lib/node_modules/yarn/lib/cli.js:1625:59
|
|
20
|
-
at Generator.next (<anonymous>)
|
|
21
|
-
at step (/Users/alex/.nvm/versions/node/v16.13.2/lib/node_modules/yarn/lib/cli.js:310:30)
|
|
22
|
-
at /Users/alex/.nvm/versions/node/v16.13.2/lib/node_modules/yarn/lib/cli.js:321:13
|
|
23
|
-
|
|
24
|
-
npm manifest:
|
|
25
|
-
{
|
|
26
|
-
"name": "@strapi/plugin-documentation",
|
|
27
|
-
"version": "4.1.12",
|
|
28
|
-
"description": "Create an OpenAPI Document and visualize your API with SWAGGER UI.",
|
|
29
|
-
"repository": {
|
|
30
|
-
"type": "git",
|
|
31
|
-
"url": "https://github.com/strapi/strapi.git",
|
|
32
|
-
"directory": "packages/plugins/documentation"
|
|
33
|
-
},
|
|
34
|
-
"license": "SEE LICENSE IN LICENSE",
|
|
35
|
-
"author": {
|
|
36
|
-
"name": "Strapi Solutions SAS",
|
|
37
|
-
"email": "hi@strapi.io",
|
|
38
|
-
"url": "https://strapi.io"
|
|
39
|
-
},
|
|
40
|
-
"maintainers": [
|
|
41
|
-
{
|
|
42
|
-
"name": "Strapi Solutions SAS",
|
|
43
|
-
"email": "hi@strapi.io",
|
|
44
|
-
"url": "https://strapi.io"
|
|
45
|
-
}
|
|
46
|
-
],
|
|
47
|
-
"scripts": {
|
|
48
|
-
"test": "echo \"no tests yet\""
|
|
49
|
-
},
|
|
50
|
-
"dependencies": {
|
|
51
|
-
"@strapi/helper-plugin": "4.1.12",
|
|
52
|
-
"@strapi/utils": "4.1.12",
|
|
53
|
-
"bcryptjs": "2.4.3",
|
|
54
|
-
"cheerio": "^1.0.0-rc.5",
|
|
55
|
-
"fs-extra": "10.0.0",
|
|
56
|
-
"koa-static": "^5.0.0",
|
|
57
|
-
"lodash": "4.17.21",
|
|
58
|
-
"path-to-regexp": "6.2.0",
|
|
59
|
-
"pluralize": "8.0.0",
|
|
60
|
-
"react": "^17.0.2",
|
|
61
|
-
"react-copy-to-clipboard": "^5.0.3",
|
|
62
|
-
"react-dom": "^17.0.2",
|
|
63
|
-
"react-intl": "5.20.2",
|
|
64
|
-
"react-redux": "7.2.3",
|
|
65
|
-
"react-router": "^5.2.0",
|
|
66
|
-
"react-router-dom": "5.2.0",
|
|
67
|
-
"redux": "^4.0.1",
|
|
68
|
-
"reselect": "^4.0.0",
|
|
69
|
-
<<<<<<< HEAD
|
|
70
|
-
"swagger-ui-dist": "3.47.1",
|
|
71
|
-
"yaml": "1.10.2"
|
|
72
|
-
=======
|
|
73
|
-
"swagger-ui-dist": "4.11.1"
|
|
74
|
-
>>>>>>> master
|
|
75
|
-
},
|
|
76
|
-
"peerDependencies": {
|
|
77
|
-
"@strapi/strapi": "^4.0.0"
|
|
78
|
-
},
|
|
79
|
-
"engines": {
|
|
80
|
-
"node": ">=12.22.0 <=16.x.x",
|
|
81
|
-
"npm": ">=6.0.0"
|
|
82
|
-
},
|
|
83
|
-
"strapi": {
|
|
84
|
-
"displayName": "Documentation",
|
|
85
|
-
"name": "documentation",
|
|
86
|
-
"description": "Create an OpenAPI Document and visualize your API with SWAGGER UI.",
|
|
87
|
-
"kind": "plugin"
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
yarn manifest:
|
|
92
|
-
No manifest
|
|
93
|
-
|
|
94
|
-
Lockfile:
|
|
95
|
-
No lockfile
|