create-esa-stack 0.2.0 → 0.2.1
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 +5 -0
- package/README.md +1 -1
- package/dist/cli.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,11 @@ 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.2.1] - 2026-02-14
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- **Zod**: Refined installation logic to skip prompting and standalone installation when **Jazz.tools** is selected (since Jazz includes Zod by default).
|
|
12
|
+
|
|
8
13
|
## [0.2.0] - 2026-02-07
|
|
9
14
|
|
|
10
15
|
### Added
|
package/README.md
CHANGED
|
@@ -71,7 +71,7 @@ The CLI will guide you through the setup:
|
|
|
71
71
|
- *Install @next/third-parties?* (Default: Yes)
|
|
72
72
|
- *Install Email tools? (Resend + React Email)* (Default: No)
|
|
73
73
|
- *Choose Backend?* (Supabase, Jazz, or None)
|
|
74
|
-
- *Install Zod?* (Default: Yes)
|
|
74
|
+
- *Install Zod?* (Default: Yes, skipped if Jazz is selected)
|
|
75
75
|
- *Install Storybook?* (Default: No)
|
|
76
76
|
- *If Yes*: Sets up Storybook environment.
|
|
77
77
|
- *If No*: Asks to install *Testing Tools (Vitest)* separately.
|
package/dist/cli.js
CHANGED
|
@@ -2931,7 +2931,7 @@ async function main() {
|
|
|
2931
2931
|
}
|
|
2932
2932
|
backend = result;
|
|
2933
2933
|
}
|
|
2934
|
-
const installZod = await resolveOption(options.zod, true, "Do you want to install Zod?");
|
|
2934
|
+
const installZod = backend === "jazz" ? false : await resolveOption(options.zod, true, "Do you want to install Zod?");
|
|
2935
2935
|
const installStorybook = await resolveOption(options.storybook, false, "Do you want to install Storybook?");
|
|
2936
2936
|
let installTesting = false;
|
|
2937
2937
|
if (installStorybook) {
|