Skip to content

Commit a29fc6a

Browse files
authored
feat: add -v flag to display version (#1063)
<!-- 👋 Hi, thanks for sending a PR to create-typescript-app! 💖. Please fill out all fields below and make sure each item is true and [x] checked. Otherwise we may not be able to review your PR. --> ## PR Checklist - [x] Addresses an existing open issue: fixes #704 - [x] That issue was marked as [`status: accepting prs`](https://github.com/JoshuaKGoldberg/create-typescript-app/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22) - [x] Steps in [CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/create-typescript-app/blob/main/.github/CONTRIBUTING.md) were taken ## Overview <!-- Description of what is changed and how the code change does that. --> I was browsing the list of issues labeled `good first issue` and saw that issue #704 had its attached PR closed. The version feature has basically already been implemented, but this just adds the flag to display the version. 🧢
1 parent b39625c commit a29fc6a

File tree

2 files changed

+22
-3
lines changed

2 files changed

+22
-3
lines changed

src/bin/index.test.ts

+12
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { beforeEach, describe, expect, it, vi } from "vitest";
33
import z from "zod";
44

55
import { bin } from "./index.js";
6+
import { getVersionFromPackageJson } from "./packageJson.js";
67

78
const mockCancel = vi.fn();
89
const mockOutro = vi.fn();
@@ -63,6 +64,7 @@ vi.mock("./promptForMode.js", () => ({
6364
describe("bin", () => {
6465
beforeEach(() => {
6566
vi.spyOn(console, "clear").mockImplementation(() => undefined);
67+
vi.spyOn(console, "log").mockImplementation(() => undefined);
6668
});
6769

6870
it("returns 1 when promptForMode returns an undefined mode", async () => {
@@ -190,4 +192,14 @@ describe("bin", () => {
190192
);
191193
expect(result).toEqual(code);
192194
});
195+
196+
it("prints the version when the --version flag is passed", async () => {
197+
const args = ["--version"];
198+
const version = await getVersionFromPackageJson();
199+
200+
const result = await bin(args);
201+
202+
expect(console.log).toHaveBeenCalledWith(version);
203+
expect(result).toBe(0);
204+
});
193205
});

src/bin/index.ts

+10-3
Original file line numberDiff line numberDiff line change
@@ -44,17 +44,24 @@ export async function bin(args: string[]) {
4444
type: "boolean",
4545
},
4646
mode: { type: "string" },
47+
version: {
48+
short: "v",
49+
type: "boolean",
50+
},
4751
},
4852
strict: false,
4953
});
5054

51-
const help = values.help;
52-
53-
if (help) {
55+
if (values.help) {
5456
logHelpText([introPrompts, ...introWarnings]);
5557
return 0;
5658
}
5759

60+
if (values.version) {
61+
console.log(version);
62+
return 0;
63+
}
64+
5865
prompts.intro(introPrompts);
5966

6067
logLine();

0 commit comments

Comments
 (0)