Skip to content

Commit 349ca49

Browse files
committed
fix #1726 and bump version
1 parent d604fe8 commit 349ca49

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
**Note**: A feature tagged as Experimental is in a
1717
high state of flux, you're at risk of it changing without notice.
1818

19-
# 2.13.0-rc.2
19+
# 2.13.0-rc.3
2020

2121
How to install:
2222

package.json

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,27 @@
11
{
22
"name": "fp-ts",
3-
"version": "2.13.0-rc.2",
3+
"version": "2.13.0-rc.3",
44
"description": "Functional programming in TypeScript",
55
"main": "./lib/index.js",
66
"module": "./es6/index.js",
77
"exports": {
88
".": {
99
"require": "./lib/index.js",
10-
"import": "./es6/index.js"
10+
"import": "./es6/index.js",
11+
"types": "./types/index.d.ts"
1112
},
1213
"./*": {
1314
"require": "./lib/*.js",
14-
"import": "./es6/*.js"
15+
"import": "./es6/*.js",
16+
"types": "./types/*.d.ts"
1517
},
1618
"./es6/*": {
17-
"import": "./es6/*.js"
19+
"import": "./es6/*.js",
20+
"types": "./types/*.d.ts"
1821
},
1922
"./lib/*": {
20-
"require": "./lib/*.js"
23+
"require": "./lib/*.js",
24+
"types": "./types/*.d.ts"
2125
}
2226
},
2327
"types": "index.d.ts",

0 commit comments

Comments
 (0)