From d09f4cb9cc5808d9c971cfcdad838edb48879f93 Mon Sep 17 00:00:00 2001 From: Leon Radley Date: Mon, 31 Oct 2022 18:34:13 +0100 Subject: [PATCH] Fix wrong paths to package.json typesVersions (#1267) * Fix wrong paths to package.json typesVersions typedVersions should not contain slash at the start of the path. Fixes #1266 * Add missing https export from v1 v1 was missing the https export Co-authored-by: Thomas Bouldin --- package.json | 29 ++++++++++++++++------------- 1 file changed, 16 insertions(+), 13 deletions(-) diff --git a/package.json b/package.json index 545568045..d9a2e1f85 100644 --- a/package.json +++ b/package.json @@ -76,34 +76,37 @@ "lib/v1" ], "v1/analytics": [ - "./lib/v1/providers/analytics" + "lib/v1/providers/analytics" ], "v1/auth": [ - "./lib/v1/providers/auth" + "lib/v1/providers/auth" ], "v1/database": [ - "./lib/v1/privders/database" + "lib/v1/privders/database" ], "v1/firestore": [ - "./lib/v1/providers/firestore" + "lib/v1/providers/firestore" + ], + "v1/https": [ + "lib/v1/providers/https" ], "v1/https": [ "./lib/v1/providers/https" ], "v1/pubsub": [ - "./lib/v1/providers/pubsub" + "lib/v1/providers/pubsub" ], - "/v1/remoteConfig": [ - "./lib/v1/providers/remoteConfig" + "v1/remoteConfig": [ + "lib/v1/providers/remoteConfig" ], - "/v1/storage": [ - "./lib/v1/providers/storage" + "v1/storage": [ + "lib/v1/providers/storage" ], - "/v1/tasks": [ - "./lib/v1/providers/tasks" + "v1/tasks": [ + "lib/v1/providers/tasks" ], - "/v1/testLab": [ - "./lib/v1/providers/testLab" + "v1/testLab": [ + "lib/v1/providers/testLab" ], "v2": [ "lib/v2"