Skip to content

Commit

Permalink
Fix wrong paths to package.json typesVersions (#1267)
Browse files Browse the repository at this point in the history
* 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 <inlined@users.noreply.github.com>
  • Loading branch information
leon and inlined committed Oct 31, 2022
1 parent 970ccf6 commit d09f4cb
Showing 1 changed file with 16 additions and 13 deletions.
29 changes: 16 additions & 13 deletions package.json
Expand Up @@ -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"
Expand Down

0 comments on commit d09f4cb

Please sign in to comment.