Skip to content

Commit

Permalink
fix #1726 and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
gcanti committed Sep 17, 2022
1 parent d604fe8 commit 349ca49
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
**Note**: A feature tagged as Experimental is in a
high state of flux, you're at risk of it changing without notice.

# 2.13.0-rc.2
# 2.13.0-rc.3

How to install:

Expand Down
14 changes: 9 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,27 @@
{
"name": "fp-ts",
"version": "2.13.0-rc.2",
"version": "2.13.0-rc.3",
"description": "Functional programming in TypeScript",
"main": "./lib/index.js",
"module": "./es6/index.js",
"exports": {
".": {
"require": "./lib/index.js",
"import": "./es6/index.js"
"import": "./es6/index.js",
"types": "./types/index.d.ts"
},
"./*": {
"require": "./lib/*.js",
"import": "./es6/*.js"
"import": "./es6/*.js",
"types": "./types/*.d.ts"
},
"./es6/*": {
"import": "./es6/*.js"
"import": "./es6/*.js",
"types": "./types/*.d.ts"
},
"./lib/*": {
"require": "./lib/*.js"
"require": "./lib/*.js",
"types": "./types/*.d.ts"
}
},
"types": "index.d.ts",
Expand Down

0 comments on commit 349ca49

Please sign in to comment.