mirror of
https://github.com/facebook/docusaurus.git
synced 2025-08-06 10:20:09 +02:00
Merge branch 'master' into header-links
This commit is contained in:
commit
090aa4c903
4 changed files with 4 additions and 10 deletions
|
@ -1,8 +1,3 @@
|
||||||
---
|
|
||||||
id: getting-started
|
|
||||||
title: Up and Running
|
|
||||||
---
|
|
||||||
|
|
||||||
## Getting Started
|
## Getting Started
|
||||||
|
|
||||||
### Project Structure
|
### Project Structure
|
||||||
|
|
|
@ -92,7 +92,7 @@ files.forEach(file => {
|
||||||
// copy sidebar if necessary
|
// copy sidebar if necessary
|
||||||
if (versionFallback.diffLatestSidebar()) {
|
if (versionFallback.diffLatestSidebar()) {
|
||||||
mkdirp(CWD + "/versioned_sidebars");
|
mkdirp(CWD + "/versioned_sidebars");
|
||||||
const sidebar = JSON.parse(fs.readFileSync(CWD + "/sidebar.json", "utf8"));
|
const sidebar = JSON.parse(fs.readFileSync(CWD + "/sidebars.json", "utf8"));
|
||||||
const versioned = {};
|
const versioned = {};
|
||||||
|
|
||||||
Object.keys(sidebar).forEach(sb => {
|
Object.keys(sidebar).forEach(sb => {
|
||||||
|
@ -111,7 +111,7 @@ if (versionFallback.diffLatestSidebar()) {
|
||||||
});
|
});
|
||||||
|
|
||||||
fs.writeFileSync(
|
fs.writeFileSync(
|
||||||
CWD + "/versioned_sidebars/version-" + version + "-sidebar.json",
|
CWD + "/versioned_sidebars/version-" + version + "-sidebars.json",
|
||||||
JSON.stringify(versioned, null, 2),
|
JSON.stringify(versioned, null, 2),
|
||||||
"utf8"
|
"utf8"
|
||||||
);
|
);
|
||||||
|
|
|
@ -73,7 +73,7 @@ function execute() {
|
||||||
|
|
||||||
files = glob.sync(CWD + "/versioned_sidebars/*");
|
files = glob.sync(CWD + "/versioned_sidebars/*");
|
||||||
files.forEach(file => {
|
files.forEach(file => {
|
||||||
if (!file.endsWith("-sidebar.json")) {
|
if (!file.endsWith("-sidebars.json")) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
sidebarContent = JSON.parse(fs.readFileSync(file, "utf8"));
|
sidebarContent = JSON.parse(fs.readFileSync(file, "utf8"));
|
||||||
|
|
|
@ -3,8 +3,7 @@
|
||||||
"Getting Started": [
|
"Getting Started": [
|
||||||
"installation",
|
"installation",
|
||||||
"site-preparation",
|
"site-preparation",
|
||||||
"site-creation",
|
"site-creation"
|
||||||
"getting-started"
|
|
||||||
],
|
],
|
||||||
"Guides": [
|
"Guides": [
|
||||||
"navigation",
|
"navigation",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue