From e34f317b37533256a063c1238609b488d263b998 Mon Sep 17 00:00:00 2001 From: Jack Franklin Date: Tue, 9 Feb 2021 08:44:23 +0000 Subject: [PATCH] fix: include lib/types.d.ts in files list (#6844) Else it's missed when npm publish happens. Didn't pick this up in my testing because a previous PR that changed this hadn't landed at the time of testing so the bug was missed. --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 69b5b784cf26a..eb985cbc548db 100644 --- a/package.json +++ b/package.json @@ -39,6 +39,7 @@ "release": "node utils/remove_version_suffix.js && standard-version --commit-all" }, "files": [ + "lib/types.d.ts", "lib/**/*.d.ts", "lib/**/*.d.ts.map", "lib/**/*.js",