envapt 1.0.3 → 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/README.md +1 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -227,13 +227,12 @@ class Config extends Envapter {
227
227
  - `'boolean'` - Boolean values (true/false, yes/no, on/off, 1/0)
228
228
  - `'bigint'` - BigInt values for large integers
229
229
  - `'symbol'` - Symbol values (creates symbols from string descriptions)
230
- - `'time'` - Time values (converts "5s", "30m", "2h" to milliseconds)
231
230
  - `'json'` - JSON objects/arrays (safe parsing with fallback)
232
231
  - `'array'` - Comma-separated string arrays
233
232
  - `'url'` - URL objects
234
233
  - `'regexp'` - Regular expressions (supports `/pattern/flags` syntax)
235
234
  - `'date'` - Date objects (supports ISO strings and timestamps)
236
- - `'time'` - Values denoting time. Such as 100, 30ms, 5s, 10m, 1.5h. (parsed to ms)
235
+ - `'time'` - Time values (converts "5s", "30m", "2h" to milliseconds)
237
236
 
238
237
  #### Custom Array Converters
239
238
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "envapt",
3
3
  "type": "module",
4
- "version": "1.0.3",
4
+ "version": "1.0.4",
5
5
  "description": "The apt way to handle env",
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist/index.mjs",