create-esa-stack 0.1.10 → 0.1.11

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/CHANGELOG.md CHANGED
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.1.11] - 2026-01-24
9
+
10
+ ### Added
11
+ - **CLI Flags**: Added support for CLI arguments and flags (e.g., `create-esa-stack my-app --supabase --no-testing`).
12
+ - **Non-Interactive Mode**: Added `--default` / `-y` flag to skip all prompts and use default values.
13
+ - **Help Command**: Added `--help` to list all available options.
14
+
8
15
  ## [0.1.10] - 2026-01-24
9
16
 
10
17
  ### Docs
package/README.md CHANGED
@@ -74,6 +74,35 @@ The CLI will guide you through the setup:
74
74
  - *If Yes*: Sets up Storybook environment.
75
75
  - *If No*: Asks to install *Testing Tools (Vitest)* separately.
76
76
 
77
+ ### CLI Options
78
+
79
+ You can pass the project name and options directly via CLI to skip prompts:
80
+
81
+ ```bash
82
+ pnpm create esa-stack <project-name> [options]
83
+ ```
84
+
85
+ **Available Flags:**
86
+
87
+ | Flag | Description | Default |
88
+ | :--- | :--- | :--- |
89
+ | `--shadcn` / `--no-shadcn` | Install shadcn/ui | Yes |
90
+ | `--tanstack-query` / `--no-tanstack-query` | Install TanStack Query | Yes |
91
+ | `--next-third-parties` / `--no-next-third-parties` | Install @next/third-parties | Yes |
92
+ | `--resend` / `--no-resend` | Install Resend | No |
93
+ | `--react-email` / `--no-react-email` | Install React Email | No |
94
+ | `--supabase` / `--no-supabase` | Install Supabase | Yes |
95
+ | `--storybook` / `--no-storybook` | Install Storybook | No |
96
+ | `--testing` / `--no-testing` | Install Vitest + RTL | Yes |
97
+ | `--default`, `-y` | Skip prompts and use defaults | - |
98
+ | `--help` | Show help message | - |
99
+
100
+ **Example:**
101
+
102
+ ```bash
103
+ pnpm create esa-stack my-app --supabase --no-testing -y
104
+ ```
105
+
77
106
  ## How It Works
78
107
 
79
108
  The CLI wraps `create-next-app` with a specific set of high-performance flags: