decoders 2.0.2 → 2.0.3
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 +8 -0
- package/package.json +2 -1
- package/result.d.ts +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## v2.0.3 (not released yet)
|
|
2
|
+
|
|
3
|
+
- Fix bundling issue where TypeScript types would not get picked up correctly in old
|
|
4
|
+
TypeScript versions. Thanks, @robinchow!
|
|
5
|
+
|
|
6
|
+
-  Fix TypeScript types for `Result` type to allow
|
|
7
|
+
implicit-undefineds.
|
|
8
|
+
|
|
1
9
|
## v2.0.2
|
|
2
10
|
|
|
3
11
|
-  Fix TypeScript types for `formatShort` and
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "decoders",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.3",
|
|
4
4
|
"description": "Elegant and battle-tested validation library for type-safe input data (for TypeScript and Flow)",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
},
|
|
15
15
|
"main": "./index.js",
|
|
16
16
|
"module": "./index.mjs",
|
|
17
|
+
"types": "./index.d.ts",
|
|
17
18
|
"keywords": [
|
|
18
19
|
"decoders",
|
|
19
20
|
"Decoder",
|
package/result.d.ts
CHANGED