zod-codegen 1.1.1 → 1.1.2

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
@@ -1,3 +1,8 @@
1
+ ## <small>1.1.2 (2025-11-13)</small>
2
+
3
+ - Merge pull request #30 from julienandreu/fix/cli-strict-mode ([d098ac7](https://github.com/julienandreu/zod-codegen/commit/d098ac7)), closes [#30](https://github.com/julienandreu/zod-codegen/issues/30)
4
+ - fix: add strict mode to CLI to catch typos in arguments ([b5ad8aa](https://github.com/julienandreu/zod-codegen/commit/b5ad8aa))
5
+
1
6
  ## <small>1.1.1 (2025-11-13)</small>
2
7
 
3
8
  - Merge pull request #29 from julienandreu/feat/server-configuration-and-examples ([c598b5a](https://github.com/julienandreu/zod-codegen/commit/c598b5a)), closes [#29](https://github.com/julienandreu/zod-codegen/issues/29)
package/dist/src/cli.js CHANGED
@@ -59,6 +59,7 @@ const argv = yargs(hideBin(process.argv))
59
59
  description: 'Directory to output the generated files',
60
60
  default: 'generated',
61
61
  })
62
+ .strict()
62
63
  .help()
63
64
  .parseSync();
64
65
  const { input, output } = argv;
package/package.json CHANGED
@@ -100,5 +100,5 @@
100
100
  "release": "semantic-release",
101
101
  "release:dry": "semantic-release --dry-run"
102
102
  },
103
- "version": "1.1.1"
103
+ "version": "1.1.2"
104
104
  }
package/src/cli.ts CHANGED
@@ -72,6 +72,7 @@ const argv = yargs(hideBin(process.argv))
72
72
  description: 'Directory to output the generated files',
73
73
  default: 'generated',
74
74
  })
75
+ .strict()
75
76
  .help()
76
77
  .parseSync();
77
78