docs: Fix broken logo link in API docs (#8642)
This commit is contained in:
@@ -29,7 +29,7 @@
|
|||||||
"template": "./node_modules/clean-jsdoc-theme",
|
"template": "./node_modules/clean-jsdoc-theme",
|
||||||
"theme_opts": {
|
"theme_opts": {
|
||||||
"default_theme": "dark",
|
"default_theme": "dark",
|
||||||
"title": "Parse Server",
|
"title": "<img src='../.github/parse-server-logo.png' class='logo'/>",
|
||||||
"create_style": "header, .sidebar-section-title, .sidebar-title { color: #139cee !important } .logo { margin-left : 40px; margin-right: 40px }"
|
"create_style": "header, .sidebar-section-title, .sidebar-title { color: #139cee !important } .logo { margin-left : 40px; margin-right: 40px }"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
7
package-lock.json
generated
7
package-lock.json
generated
@@ -46,7 +46,7 @@
|
|||||||
"pluralize": "8.0.0",
|
"pluralize": "8.0.0",
|
||||||
"rate-limit-redis": "3.0.2",
|
"rate-limit-redis": "3.0.2",
|
||||||
"redis": "4.6.6",
|
"redis": "4.6.6",
|
||||||
"semver": "^7.5.1",
|
"semver": "7.5.1",
|
||||||
"subscriptions-transport-ws": "0.11.0",
|
"subscriptions-transport-ws": "0.11.0",
|
||||||
"tv4": "1.3.0",
|
"tv4": "1.3.0",
|
||||||
"uuid": "9.0.0",
|
"uuid": "9.0.0",
|
||||||
@@ -15213,6 +15213,11 @@
|
|||||||
"safer-buffer": "^2.0.2",
|
"safer-buffer": "^2.0.2",
|
||||||
"tweetnacl": "~0.14.0"
|
"tweetnacl": "~0.14.0"
|
||||||
},
|
},
|
||||||
|
"bin": {
|
||||||
|
"sshpk-conv": "bin/sshpk-conv",
|
||||||
|
"sshpk-sign": "bin/sshpk-sign",
|
||||||
|
"sshpk-verify": "bin/sshpk-verify"
|
||||||
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=0.10.0"
|
"node": ">=0.10.0"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -27,3 +27,8 @@ npm run docs
|
|||||||
|
|
||||||
mkdir -p "docs/api/${DEST}"
|
mkdir -p "docs/api/${DEST}"
|
||||||
cp -R out/* "docs/api/${DEST}"
|
cp -R out/* "docs/api/${DEST}"
|
||||||
|
|
||||||
|
# Copy other resources
|
||||||
|
RESOURCE_DIR=".github"
|
||||||
|
mkdir -p "docs/${RESOURCE_DIR}"
|
||||||
|
cp "./.github/parse-server-logo.png" "docs/${RESOURCE_DIR}/"
|
||||||
|
|||||||
Reference in New Issue
Block a user