create-docusaurus 3.10.1 → 3.10.2

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": "create-docusaurus",
3
- "version": "3.10.1",
3
+ "version": "3.10.2",
4
4
  "description": "Create Docusaurus apps easily.",
5
5
  "type": "module",
6
6
  "repository": {
@@ -22,7 +22,7 @@
22
22
  },
23
23
  "license": "MIT",
24
24
  "dependencies": {
25
- "@docusaurus/logger": "3.10.1",
25
+ "@docusaurus/logger": "3.10.2",
26
26
  "commander": "^5.1.0",
27
27
  "cross-spawn": "^7.0.0",
28
28
  "prompts": "^2.4.2",
@@ -36,5 +36,5 @@
36
36
  "engines": {
37
37
  "node": ">=20.0"
38
38
  },
39
- "gitHead": "41c1a458ecb07d61b6df2761ea4bc1b13db49d12"
39
+ "gitHead": "f37f9035584917a97a260b91fc2842cba4f8b94f"
40
40
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "docusaurus-2-classic-template",
3
- "version": "3.10.1",
3
+ "version": "3.10.2",
4
4
  "private": true,
5
5
  "scripts": {
6
6
  "docusaurus": "docusaurus",
@@ -14,9 +14,9 @@
14
14
  "write-heading-ids": "docusaurus write-heading-ids"
15
15
  },
16
16
  "dependencies": {
17
- "@docusaurus/core": "3.10.1",
18
- "@docusaurus/faster": "3.10.1",
19
- "@docusaurus/preset-classic": "3.10.1",
17
+ "@docusaurus/core": "3.10.2",
18
+ "@docusaurus/faster": "3.10.2",
19
+ "@docusaurus/preset-classic": "3.10.2",
20
20
  "@mdx-js/react": "^3.0.0",
21
21
  "clsx": "^2.0.0",
22
22
  "prism-react-renderer": "^2.3.0",
@@ -24,8 +24,8 @@
24
24
  "react-dom": "^19.0.0"
25
25
  },
26
26
  "devDependencies": {
27
- "@docusaurus/module-type-aliases": "3.10.1",
28
- "@docusaurus/types": "3.10.1"
27
+ "@docusaurus/module-type-aliases": "3.10.2",
28
+ "@docusaurus/types": "3.10.2"
29
29
  },
30
30
  "browserslist": {
31
31
  "production": [
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "docusaurus-2-classic-typescript-template",
3
- "version": "3.10.1",
3
+ "version": "3.10.2",
4
4
  "private": true,
5
5
  "scripts": {
6
6
  "docusaurus": "docusaurus",
@@ -15,9 +15,9 @@
15
15
  "typecheck": "tsc"
16
16
  },
17
17
  "dependencies": {
18
- "@docusaurus/core": "3.10.1",
19
- "@docusaurus/faster": "3.10.1",
20
- "@docusaurus/preset-classic": "3.10.1",
18
+ "@docusaurus/core": "3.10.2",
19
+ "@docusaurus/faster": "3.10.2",
20
+ "@docusaurus/preset-classic": "3.10.2",
21
21
  "@mdx-js/react": "^3.0.0",
22
22
  "clsx": "^2.0.0",
23
23
  "prism-react-renderer": "^2.3.0",
@@ -25,9 +25,9 @@
25
25
  "react-dom": "^19.0.0"
26
26
  },
27
27
  "devDependencies": {
28
- "@docusaurus/module-type-aliases": "3.10.1",
29
- "@docusaurus/tsconfig": "3.10.1",
30
- "@docusaurus/types": "3.10.1",
28
+ "@docusaurus/module-type-aliases": "3.10.2",
29
+ "@docusaurus/tsconfig": "3.10.2",
30
+ "@docusaurus/types": "3.10.2",
31
31
  "@types/react": "^19.0.0",
32
32
  "typescript": "~6.0.2"
33
33
  },
@@ -5,13 +5,15 @@ This website is built using [Docusaurus](https://docusaurus.io/), a modern stati
5
5
  ## Installation
6
6
 
7
7
  ```bash
8
- yarn
8
+ npm install
9
9
  ```
10
10
 
11
+ **Note**: feel free to use the package manager of your choice.
12
+
11
13
  ## Local Development
12
14
 
13
15
  ```bash
14
- yarn start
16
+ npm run start
15
17
  ```
16
18
 
17
19
  This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
@@ -19,7 +21,7 @@ This command starts a local development server and opens up a browser window. Mo
19
21
  ## Build
20
22
 
21
23
  ```bash
22
- yarn build
24
+ npm run build
23
25
  ```
24
26
 
25
27
  This command generates static content into the `build` directory and can be served using any static contents hosting service.
@@ -29,13 +31,13 @@ This command generates static content into the `build` directory and can be serv
29
31
  Using SSH:
30
32
 
31
33
  ```bash
32
- USE_SSH=true yarn deploy
34
+ USE_SSH=true npm run deploy
33
35
  ```
34
36
 
35
37
  Not using SSH:
36
38
 
37
39
  ```bash
38
- GIT_USER=<Your GitHub username> yarn deploy
40
+ GIT_USER=<Your GitHub username> npm run deploy
39
41
  ```
40
42
 
41
- If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch.
43
+ If you are using GitHub Pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch.