lildocs 0.1.23 → 0.1.24

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/cli.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- import { n as renderGitHubPagesWorkflow, r as repoRelativeInputPath, t as normalizeBasePath } from "./github-pages-CbcFNgKi.mjs";
2
+ import { n as renderGitHubPagesWorkflow, r as repoRelativeInputPath, t as normalizeBasePath } from "./github-pages-ePCFj6Fo.mjs";
3
3
  import { createRequire } from "node:module";
4
4
  import { spawn } from "node:child_process";
5
5
  import process$1 from "node:process";
@@ -20431,6 +20431,7 @@ const bareBuildCommand = (0, import_cjs.command)({
20431
20431
  });
20432
20432
  const app = (0, import_cjs.subcommands)({
20433
20433
  name: "lildocs",
20434
+ version: "0.1.24",
20434
20435
  description: "Turn Markdown docs into a static searchable documentation site.",
20435
20436
  cmds: {
20436
20437
  build: buildCommand,
@@ -20440,7 +20441,7 @@ const app = (0, import_cjs.subcommands)({
20440
20441
  }
20441
20442
  });
20442
20443
  function isKnownTopLevelArg(arg) {
20443
- return arg === void 0 || arg === "build" || arg === "deploy" || arg === "dev" || arg === "init" || arg === "--help" || arg === "-h";
20444
+ return arg === void 0 || arg === "build" || arg === "deploy" || arg === "dev" || arg === "init" || arg === "--help" || arg === "-h" || arg === "--version" || arg === "-v";
20444
20445
  }
20445
20446
  async function main() {
20446
20447
  const args = process.argv.slice(2);
@@ -1,2 +1,2 @@
1
- import { n as renderGitHubPagesWorkflow, r as repoRelativeInputPath, t as normalizeBasePath } from "../github-pages-CbcFNgKi.mjs";
1
+ import { n as renderGitHubPagesWorkflow, r as repoRelativeInputPath, t as normalizeBasePath } from "../github-pages-ePCFj6Fo.mjs";
2
2
  export { normalizeBasePath, renderGitHubPagesWorkflow, repoRelativeInputPath };
@@ -54,7 +54,7 @@ ${pnpmActionSetupOptions} - uses: actions/setup-node@49933ea5288caeca8642d1
54
54
  cache: pnpm
55
55
  - run: pnpm install --frozen-lockfile
56
56
  - run: pnpm run build
57
- - run: pnpm dlx lildocs@${patchVersionRange(options.lildocsVersion ?? "0.1.23")} ${deployArgs.map(shellQuote).join(" ")}
57
+ - run: pnpm dlx lildocs@${patchVersionRange(options.lildocsVersion ?? "0.1.24")} ${deployArgs.map(shellQuote).join(" ")}
58
58
  - uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b
59
59
  - uses: actions/upload-pages-artifact@56afc609e74202658d3ffba0e8f6dda462b719fa
60
60
  with:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lildocs",
3
- "version": "0.1.23",
3
+ "version": "0.1.24",
4
4
  "description": "A lightweight CLI that turns Markdown docs into a static searchable documentation site.",
5
5
  "homepage": "https://aleclarson.github.io/lildocs/",
6
6
  "repository": {