@dscodotco/theme-cli
Version:
A CLI tool for developing Shopify themes
24 lines (23 loc) • 696 B
TypeScript
import { Command } from "commander";
/**
* Options for the theme development server
*/
export interface ThemeDevOptions {
/** Shopify store name (e.g., my-store) */
store: string;
/** Shopify Admin API key */
apiKey: string;
/** Shopify Admin API password/token */
password: string;
/** Theme ID to use for development (optional) */
themeId?: string;
/** Theme directory (defaults to current directory) */
themeDir?: string;
/** Port for preview server */
port?: string;
/** Name for the development theme if creating a new one */
themeName?: string;
/** Enable debug mode */
debug?: boolean;
}
export declare const dev: Command;