flowdoc-gen 0.1.1 → 0.1.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.
package/dist/bin.js CHANGED
@@ -9,7 +9,7 @@ var __dirname = dirname(fileURLToPath(import.meta.url));
9
9
  var pkg = JSON.parse(readFileSync(join(__dirname, "../package.json"), "utf-8"));
10
10
  program.name("flowdoc").description("Auto-generate beautiful API documentation from your Express codebase").version(pkg.version);
11
11
  program.command("init").description("Scaffold a flowdoc.config.ts in the current directory").action(async () => {
12
- const { init } = await import("./init-3GG2S3V3.js");
12
+ const { init } = await import("./init-6XHCTCLE.js");
13
13
  init();
14
14
  });
15
15
  program.command("generate").description("Parse your routes and write docs to the output folder").option("-c, --config <path>", "Path to flowdoc config file").option("-o, --output <path>", "Override output directory").option("-q, --quiet", "Suppress output").action(async (opts) => {