@karmaniverous/get-dotenv 4.3.0 → 4.3.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/README.md CHANGED
@@ -54,7 +54,9 @@ import { getDotenv } from '@karmaniverous/get-dotenv';
54
54
  const dotenv = await getDotenv(options);
55
55
  ```
56
56
 
57
- See the [GetDotenvOptions](./src/GetDotenvOptions.ts) type for descriptions of all the configuration options.
57
+ Options can be passed programmatically or set in a `getdotenv.config.json` file in your project root directory. The same file also sets default options for the `getdotenv` CLI or any child CLI you spawn from it.
58
+
59
+ See the [child CLI example repo](https://github.com/karmaniverous/get-dotenv-child#configuration) for an extensiive discussion of the various config options and how & where to set them.
58
60
 
59
61
  ## Dynamic Processing
60
62