create-docus 4.1.2 → 4.1.4
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 +4 -4
- package/dist/main.mjs +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
[](https://npm.chart.dev/create-docus)
|
|
7
7
|
[](https://npmjs.com/package/create-docus)
|
|
8
8
|
|
|
9
|
-
The fastest way to create a new [Docus](https://docus.dev) documentation project. This CLI tool scaffolds a complete documentation website using the [`docus`](https://www.github.com/
|
|
9
|
+
The fastest way to create a new [Docus](https://docus.dev) documentation project. This CLI tool scaffolds a complete documentation website using the [`docus`](https://www.github.com/nuxt-content/docus/tree/main/layer) Nuxt layer.
|
|
10
10
|
|
|
11
11
|
## 🚀 Quick Start
|
|
12
12
|
|
|
@@ -126,7 +126,7 @@ Your project comes pre-configured with the best of the Nuxt ecosystem:
|
|
|
126
126
|
|
|
127
127
|
## 🔗 Related Packages
|
|
128
128
|
|
|
129
|
-
- [`docus`](https://github.com/
|
|
129
|
+
- [`docus`](https://github.com/nuxt-content/docus/tree/main/layer) - The Nuxt layer that powers your documentation
|
|
130
130
|
|
|
131
131
|
## 📖 Documentation
|
|
132
132
|
|
|
@@ -142,7 +142,7 @@ To contribute to the CLI tool:
|
|
|
142
142
|
|
|
143
143
|
```bash
|
|
144
144
|
# Clone this repository
|
|
145
|
-
git clone https://github.com/
|
|
145
|
+
git clone https://github.com/nuxt-content/docus
|
|
146
146
|
|
|
147
147
|
# Install dependencies
|
|
148
148
|
pnpm install
|
|
@@ -156,4 +156,4 @@ pnpm run dev
|
|
|
156
156
|
|
|
157
157
|
## 📄 License
|
|
158
158
|
|
|
159
|
-
Published under the [MIT](https://github.com/
|
|
159
|
+
Published under the [MIT](https://github.com/nuxt-content/docus/blob/main/LICENSE) license.
|
package/dist/main.mjs
CHANGED
|
@@ -31,7 +31,7 @@ function createCLI(opts) {
|
|
|
31
31
|
throw new Error("Invalid template");
|
|
32
32
|
}
|
|
33
33
|
const { runCommand } = await import("nuxi");
|
|
34
|
-
await runCommand("init", [dir, "-t", `gh:
|
|
34
|
+
await runCommand("init", [dir, "-t", `gh:nuxt-content/docus/.starters/${template}`]);
|
|
35
35
|
}
|
|
36
36
|
});
|
|
37
37
|
return {
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-docus",
|
|
3
3
|
"description": "CLI for creating Docus documentation projects",
|
|
4
|
-
"version": "4.1.
|
|
4
|
+
"version": "4.1.4",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
|
-
"url": "git+https://github.com/
|
|
7
|
+
"url": "git+https://github.com/nuxt-content/docus.git"
|
|
8
8
|
},
|
|
9
9
|
"private": false,
|
|
10
10
|
"license": "MIT",
|