Add --tsquery option c22a5d7b
Maximilian Leodolter · 2025-08-04 12:50 2 file(s) · +4 −1
src/index.ts +4 −0
24 24
	)
25 25
	.option("--branch <branch>", "specify a branch to use from the repository")
26 26
	.option("--rpc", "use Hono RPC client for type-safe API communication")
27 +
	.option(
28 +
		"--tsquery",
29 +
		"use TanStack Query for data fetching and state management",
30 +
	)
27 31
	.option("--linter <linter>", "specify the linter to use (eslint or biome)")
28 32
	.action(create);
29 33
src/lib/index.ts +0 −1
2 2
export * from "./display-banner";
3 3
export * from "./initialize-git";
4 4
export * from "./install-dependencies";
5 -
export * from "./patch-files-rpc";
6 5
export * from "./prompt-for-options";
7 6
export * from "./scaffold-template";
8 7
export * from "./setup-biome";