From 9d09bf872eaf29cbbccd63743da9673cc3455fb5 Mon Sep 17 00:00:00 2001 From: Dan Beam Date: Tue, 5 Jul 2022 14:04:49 -0700 Subject: [PATCH 1/2] Emit .d.ts to dist/ on build via "declaration" in tsconfig.json --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index f37fa6b6..b8d7ea79 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -14,7 +14,8 @@ "moduleResolution": "node", "resolveJsonModule": true, "downlevelIteration": true, - "outDir": "dist" + "outDir": "dist", + "declaration": true }, "include": [ "*.*", From 79e95a3ecb62194c67b06533475dbb20f65b6d0c Mon Sep 17 00:00:00 2001 From: Kenneth Skovhus Date: Wed, 6 Jul 2022 19:42:13 +0200 Subject: [PATCH 2/2] Bump version to 0.28 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 79dee896..65cb2351 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "jest-codemods", - "version": "0.27.0", + "version": "0.28.0", "description": "Codemods for migrating test files to Jest", "license": "MIT", "repository": "skovhus/jest-codemods",