chore: regenerate beta.22 examples (#7742)

This commit is contained in:
Sébastien Lorber 2022-07-08 19:08:17 +02:00 committed by GitHub
parent 1b25f4c792
commit cdde213131
9 changed files with 1568 additions and 1712 deletions

View file

@ -14,7 +14,7 @@ Or **try Docusaurus immediately** with **[docusaurus.new](https://docusaurus.new
### What you'll need ### What you'll need
- [Node.js](https://nodejs.org/en/download/) version 14 or above: - [Node.js](https://nodejs.org/en/download/) version 16.14 or above:
- When installing Node.js, you are recommended to check all checkboxes related to dependencies. - When installing Node.js, you are recommended to check all checkboxes related to dependencies.
## Generate a new site ## Generate a new site

View file

@ -31,4 +31,4 @@ Congratulations, you have made your first post!
Feel free to play around and edit this post as much you like. Feel free to play around and edit this post as much you like.
``` ```
A new blog post is now available at `http://localhost:3000/blog/greetings`. A new blog post is now available at [http://localhost:3000/blog/greetings](http://localhost:3000/blog/greetings).

View file

@ -12,7 +12,7 @@ Documents are **groups of pages** connected through:
## Create your first Doc ## Create your first Doc
Create a markdown file at `docs/hello.md`: Create a Markdown file at `docs/hello.md`:
```md title="docs/hello.md" ```md title="docs/hello.md"
# Hello # Hello
@ -20,7 +20,7 @@ Create a markdown file at `docs/hello.md`:
This is my **first Docusaurus document**! This is my **first Docusaurus document**!
``` ```
A new document is now available at `http://localhost:3000/docs/hello`. A new document is now available at [http://localhost:3000/docs/hello](http://localhost:3000/docs/hello).
## Configure the Sidebar ## Configure the Sidebar

View file

@ -6,9 +6,9 @@ sidebar_position: 1
Add **Markdown or React** files to `src/pages` to create a **standalone page**: Add **Markdown or React** files to `src/pages` to create a **standalone page**:
- `src/pages/index.js` -> `localhost:3000/` - `src/pages/index.js` `localhost:3000/`
- `src/pages/foo.md` -> `localhost:3000/foo` - `src/pages/foo.md` `localhost:3000/foo`
- `src/pages/foo/bar.js` -> `localhost:3000/foo/bar` - `src/pages/foo/bar.js` `localhost:3000/foo/bar`
## Create your first React Page ## Create your first React Page
@ -28,7 +28,7 @@ export default function MyReactPage() {
} }
``` ```
A new page is now available at `http://localhost:3000/my-react-page`. A new page is now available at [http://localhost:3000/my-react-page](http://localhost:3000/my-react-page).
## Create your first Markdown Page ## Create your first Markdown Page
@ -40,4 +40,4 @@ Create a file at `src/pages/my-markdown-page.md`:
This is a Markdown page This is a Markdown page
``` ```
A new page is now available at `http://localhost:3000/my-markdown-page`. A new page is now available at [http://localhost:3000/my-markdown-page](http://localhost:3000/my-markdown-page).

View file

@ -26,6 +26,6 @@ Test your production build locally:
npm run serve npm run serve
``` ```
The `build` folder is now served at `http://localhost:3000/`. The `build` folder is now served at [http://localhost:3000/](http://localhost:3000/).
You can now deploy the `build` folder **almost anywhere** easily, **for free** or very small cost (read the **[Deployment Guide](https://docusaurus.io/docs/deployment)**). You can now deploy the `build` folder **almost anywhere** easily, **for free** or very small cost (read the **[Deployment Guide](https://docusaurus.io/docs/deployment)**).

View file

@ -39,7 +39,7 @@ Start your site on the French locale:
npm run start -- --locale fr npm run start -- --locale fr
``` ```
Your localized site is accessible at `http://localhost:3000/fr/` and the `Getting Started` page is translated. Your localized site is accessible at [http://localhost:3000/fr/](http://localhost:3000/fr/) and the `Getting Started` page is translated.
:::caution :::caution

View file

@ -15,16 +15,16 @@
"dev": "docusaurus start" "dev": "docusaurus start"
}, },
"dependencies": { "dependencies": {
"@docusaurus/core": "2.0.0-beta.20", "@docusaurus/core": "2.0.0-beta.22",
"@docusaurus/preset-classic": "2.0.0-beta.20", "@docusaurus/preset-classic": "2.0.0-beta.22",
"@mdx-js/react": "^1.6.22", "@mdx-js/react": "^1.6.22",
"clsx": "^1.1.1", "clsx": "^1.2.0",
"prism-react-renderer": "^1.3.1", "prism-react-renderer": "^1.3.5",
"react": "^17.0.2", "react": "^17.0.2",
"react-dom": "^17.0.2" "react-dom": "^17.0.2"
}, },
"devDependencies": { "devDependencies": {
"@docusaurus/module-type-aliases": "2.0.0-beta.20" "@docusaurus/module-type-aliases": "2.0.0-beta.22"
}, },
"browserslist": { "browserslist": {
"production": [ "production": [
@ -38,5 +38,8 @@
"last 1 safari version" "last 1 safari version"
] ]
}, },
"engines": {
"node": ">=16.14"
},
"description": "Docusaurus example project" "description": "Docusaurus example project"
} }

View file

@ -1,11 +1,12 @@
import React from 'react'; import React from 'react';
import clsx from 'clsx'; import clsx from 'clsx';
import Layout from '@theme/Layout';
import Link from '@docusaurus/Link'; import Link from '@docusaurus/Link';
import useDocusaurusContext from '@docusaurus/useDocusaurusContext'; import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
import styles from './index.module.css'; import Layout from '@theme/Layout';
import HomepageFeatures from '@site/src/components/HomepageFeatures'; import HomepageFeatures from '@site/src/components/HomepageFeatures';
import styles from './index.module.css';
function HomepageHeader() { function HomepageHeader() {
const {siteConfig} = useDocusaurusContext(); const {siteConfig} = useDocusaurusContext();
return ( return (

3240
yarn.lock

File diff suppressed because it is too large Load diff