zod-envkit 1.0.2 → 1.0.4

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +33 -15
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,11 +1,42 @@
1
1
  # Changelog
2
2
 
3
- All notable changes to this project will be documented in this file.
4
-
3
+ All notable changes to this project will be documented in this file.
5
4
  This project follows [Semantic Versioning](https://semver.org/).
6
5
 
7
6
  ---
8
7
 
8
+ ## [1.0.4] – 2026-01-26
9
+ ### Added
10
+ - `zod-envkit show` command to display env status in a readable table (with secret masking)
11
+ - `zod-envkit check` command to validate required variables (CI-friendly exit codes)
12
+
13
+ ### Changed
14
+ - CLI now also searches for `env.meta.json` in `./examples/` by default
15
+
16
+ [1.0.4]: https://www.npmjs.com/package/zod-envkit/v/1.0.4
17
+
18
+ ---
19
+
20
+ ## [1.0.3] – 2026-01-26
21
+ - Git tag only (not published to npm)
22
+
23
+ ---
24
+
25
+ ## [1.0.2] – 2026-01-26
26
+ - Git tag only (not published to npm)
27
+
28
+ ---
29
+
30
+ ## [1.0.1] – 2026-01-26
31
+
32
+ ### Changed
33
+ - Packaging improvements for npm (ship only compiled output and docs)
34
+ - Documentation updates
35
+
36
+ [1.0.1]: https://www.npmjs.com/package/zod-envkit/v/1.0.1
37
+
38
+ ---
39
+
9
40
  ## [1.0.0] – 2026-01-26
10
41
 
11
42
  ### Added
@@ -16,11 +47,9 @@ This project follows [Semantic Versioning](https://semver.org/).
16
47
  - CLI tool to generate:
17
48
  - `.env.example`
18
49
  - `ENV.md` documentation
19
- - Automatic type inference for validated environment variables
20
50
  - Support for ESM and CommonJS builds
21
51
  - TypeScript declaration files (`.d.ts`) included
22
52
  - Basic test suite using Vitest
23
- - Clear and documented API surface
24
53
  - MIT license
25
54
 
26
55
  ### Design Decisions
@@ -29,15 +58,4 @@ This project follows [Semantic Versioning](https://semver.org/).
29
58
  - Environment variables treated as an explicit runtime contract
30
59
  - Small, framework-agnostic core
31
60
 
32
- ---
33
-
34
61
  [1.0.0]: https://www.npmjs.com/package/zod-envkit/v/1.0.0
35
-
36
-
37
- ## [1.0.1] – 2026-01-26
38
-
39
- ### Changed
40
- - Documentation and packaging improvements
41
- - Minor CLI/docs adjustments
42
-
43
- [1.0.1]: https://www.npmjs.com/package/zod-envkit/v/1.0.1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zod-envkit",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "Validate environment variables with Zod and generate .env.example",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",