UNPKG

@dscodotco/theme-cli

Version:

A CLI tool for developing Shopify themes

16 lines (15 loc) 564 B
#!/usr/bin/env node /** * @module index * @description Entry point for the theme-cli package * * This file is the main entry point for the CLI and exports * all public APIs of the package to make them available for * programmatic usage. */ export { createCli, runCli } from "./cli.js"; export { createLogger } from "./utils/logger.js"; export { downloadFile, downloadAndSaveFile } from "./utils/download.js"; export { extractZip } from "./utils/zip.js"; export { initShopifyTheme } from "./commands/shopify/theme/init.js"; export * from "./types/index.js";