@vkuttyp/create-docus 5.4.7 → 5.4.9
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/dist/main.mjs +1 -1
- package/package.json +3 -2
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("@nuxt/cli");
|
|
34
|
-
await runCommand("init", [dir, "-t", `gh:
|
|
34
|
+
await runCommand("init", [dir, "-t", `gh:vkuttyp/docus/.starters/${template}`]);
|
|
35
35
|
}
|
|
36
36
|
});
|
|
37
37
|
return {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vkuttyp/create-docus",
|
|
3
3
|
"description": "CLI for creating Docus documentation projects",
|
|
4
|
-
"version": "5.4.
|
|
4
|
+
"version": "5.4.9",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/vkuttyp/docus.git"
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
"private": false,
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"bin": {
|
|
12
|
-
"create-docus": "dist/main.mjs"
|
|
12
|
+
"create-docus": "dist/main.mjs",
|
|
13
|
+
"@vkuttyp/create-docus": "dist/main.mjs"
|
|
13
14
|
},
|
|
14
15
|
"files": [
|
|
15
16
|
"dist"
|