From b4fd222c067046bb0397d2c48842e322dfa64208 Mon Sep 17 00:00:00 2001 From: Eric Crosson Date: Thu, 26 May 2022 10:51:00 -0500 Subject: [PATCH] fix(deps): @types packages are necessary for types inferencing so add @types/superagent and @types/supertest to dependencies so that downstream users get the expected type-inferencing out of the box --- packages/superagent-wrapper/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/superagent-wrapper/package.json b/packages/superagent-wrapper/package.json index 0d356606..a1080f0f 100644 --- a/packages/superagent-wrapper/package.json +++ b/packages/superagent-wrapper/package.json @@ -16,6 +16,8 @@ }, "dependencies": { "@api-ts/io-ts-http": "0.0.0-semantically-released", + "@types/superagent": "4.1.5", + "@types/supertest": "2.0.11", "fp-ts": "2.11.8", "io-ts": "2.1.3", "superagent": "3.8.3", @@ -25,8 +27,6 @@ "@types/chai": "4.2.12", "@types/express": "4.17.13", "@types/mocha": "9.1.1", - "@types/superagent": "4.1.5", - "@types/supertest": "2.0.11", "body-parser": "1.20.0", "chai": "4.2.0", "express": "4.17.1",