zcb 0.0.14 → 0.0.15

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/README.md +1 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -330,7 +330,7 @@ Then use the autogenerated config to create a config reader that you can access
330
330
  import { createConfigParser, createConfigReader } from 'zcb';
331
331
  import builtConfig from './builtConfig.ts';
332
332
 
333
- export default () => createConfigReader(builtConfig);
333
+ export default createConfigReader(builtConfig);
334
334
  ```
335
335
 
336
336
  ### Use config reader
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "zcb",
3
3
  "description": "Build configs with type safety from zod schema.",
4
- "version": "0.0.14",
4
+ "version": "0.0.15",
5
5
  "author": "Dylan Aubrey",
6
6
  "license": "MIT",
7
7
  "homepage": "https://github.com/badbatch/zod-config-builder",