doccupine 0.0.4 → 0.0.5
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/index.js +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -463,7 +463,7 @@ export default function Home() {
|
|
|
463
463
|
program
|
|
464
464
|
.name("doccupine")
|
|
465
465
|
.description("Watch MDX files and generate Next.js documentation pages automatically")
|
|
466
|
-
.version("0.0.
|
|
466
|
+
.version("0.0.5");
|
|
467
467
|
program
|
|
468
468
|
.command("watch", { isDefault: true })
|
|
469
469
|
.description("Watch a directory for MDX changes and generate Next.js app")
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "doccupine",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.5",
|
|
4
4
|
"description": "CLI tool to watch MDX files and generate Next.js beautiful documentation pages automatically",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
7
|
-
"doccupine
|
|
7
|
+
"doccupine": "dist/index.js"
|
|
8
8
|
},
|
|
9
9
|
"type": "module",
|
|
10
10
|
"scripts": {
|