create-docus 4.0.0 → 4.0.1
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/README.md +3 -3
- 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
|
|
17
|
+
npx create-docus my-docs
|
|
18
18
|
|
|
19
19
|
# Or create with i18n template for multi-language docs
|
|
20
|
-
npx create
|
|
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
|
|
40
|
+
npx create-docus my-docs -t i18n
|
|
41
41
|
```
|
|
42
42
|
|
|
43
43
|
The i18n template includes:
|