create-docus 4.0.0 → 4.0.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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -14,10 +14,10 @@ Create a new documentation project in seconds:
14
14
 
15
15
  ```bash
16
16
  # Create a new project
17
- npx create docus my-docs
17
+ npx create-docus my-docs
18
18
 
19
19
  # Or create with i18n template for multi-language docs
20
- npx create docus my-docs -t i18n
20
+ npx create-docus my-docs -t i18n
21
21
 
22
22
  # Navigate to your project
23
23
  cd my-docs
@@ -37,7 +37,7 @@ Creates a basic documentation project ready for single-language content.
37
37
  Use the `-t i18n` flag to create a project with internationalization support:
38
38
 
39
39
  ```bash
40
- npx create docus my-docs -t i18n
40
+ npx create-docus my-docs -t i18n
41
41
  ```
42
42
 
43
43
  The i18n template includes:
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "create-docus",
3
3
  "description": "CLI for creating Docus documentation projects",
4
- "version": "4.0.0",
4
+ "version": "4.0.2",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/nuxtlabs/docus.git"