Skip to content

Commit

Permalink
Merge pull request #354 from ericcrosson-bitgo/fix-loosen-constraint-…
Browse files Browse the repository at this point in the history
…on-fp-ts-version

fix: loosen constraint on fp-ts version
  • Loading branch information
bitgopatmcl authored Dec 14, 2022
2 parents 5d6e8fa + cc499ad commit ae41a39
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/express-wrapper/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"dependencies": {
"@api-ts/io-ts-http": "0.0.0-semantically-released",
"express": "4.18.2",
"fp-ts": "2.13.1",
"fp-ts": "^2.0.0",
"io-ts": "2.1.3"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/superagent-wrapper/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
},
"dependencies": {
"@api-ts/io-ts-http": "0.0.0-semantically-released",
"fp-ts": "2.13.1",
"fp-ts": "^2.0.0",
"io-ts": "2.1.3",
"whatwg-url": "11.0.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/superagent-wrapper/src/request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import * as E from 'fp-ts/Either';
import * as t from 'io-ts';
import * as PathReporter from 'io-ts/lib/PathReporter';
import { URL } from 'whatwg-url';
import { pipe } from 'fp-ts/function';
import { pipe } from 'fp-ts/pipeable';

type SuccessfulResponses<Route extends h.HttpRoute> = {
[R in keyof Route['response']]: {
Expand Down
2 changes: 1 addition & 1 deletion packages/typed-express-router/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"@api-ts/io-ts-http": "0.0.0-semantically-released",
"@types/express": "4.17.15",
"express": "4.18.2",
"fp-ts": "2.13.1",
"fp-ts": "^2.0.0",
"io-ts": "2.1.3"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/typed-express-router/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import { ApiSpec, HttpRoute, KeyToHttpStatus } from '@api-ts/io-ts-http';
import express from 'express';
import * as E from 'fp-ts/Either';
import { pipe } from 'fp-ts/function';
import { pipe } from 'fp-ts/pipeable';
import { defaultOnDecodeError, defaultOnEncodeError } from './errors';
import { apiTsPathToExpress } from './path';
import {
Expand Down

0 comments on commit ae41a39

Please sign in to comment.