docgen-tool 6.4.2 → 6.4.3

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/dist/cli/cli.js +1 -1
  2. package/package.json +1 -2
package/dist/cli/cli.js CHANGED
@@ -387,7 +387,7 @@ const scaffold = async (command) => {
387
387
  console.log(pico.green("Creating scaffold template directory"));
388
388
  await copyDirectory(inputDir, outputDir, verbose);
389
389
  };
390
- program.version("6.4.2").usage("[command] [--option]");
390
+ program.version("6.4.3").usage("[command] [--option]");
391
391
  program.command("scaffold").usage("[--option]").description("create a template input directory").option("-o, --output [path]", "path to the output directory (default: ./)", "./").option("-v, --verbose", "show verbose output including detailed errors").action((command) => {
392
392
  scaffold(command);
393
393
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "docgen-tool",
3
3
  "type": "module",
4
- "version": "6.4.2",
4
+ "version": "6.4.3",
5
5
  "description": "A tool for creating HTML and PDF documentation",
6
6
  "bin": "./dist/cli/cli.js",
7
7
  "files": [
@@ -57,7 +57,6 @@
57
57
  "react-resize-detector": "^12.3.0",
58
58
  "rehype-raw": "^7.0.0",
59
59
  "remark-gfm": "^4.0.1",
60
- "rolldown-vite": "^7.3.1",
61
60
  "style-dictionary": "^5.1.4",
62
61
  "vite": "8.0.0-beta.8",
63
62
  "z-schema": "^6.0.2"