Skip to content

Commit d09f4cb

Browse files
leoninlined
andauthored
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 <[email protected]>
1 parent 970ccf6 commit d09f4cb

File tree

1 file changed

+16
-13
lines changed

1 file changed

+16
-13
lines changed

package.json

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -76,34 +76,37 @@
7676
"lib/v1"
7777
],
7878
"v1/analytics": [
79-
"./lib/v1/providers/analytics"
79+
"lib/v1/providers/analytics"
8080
],
8181
"v1/auth": [
82-
"./lib/v1/providers/auth"
82+
"lib/v1/providers/auth"
8383
],
8484
"v1/database": [
85-
"./lib/v1/privders/database"
85+
"lib/v1/privders/database"
8686
],
8787
"v1/firestore": [
88-
"./lib/v1/providers/firestore"
88+
"lib/v1/providers/firestore"
89+
],
90+
"v1/https": [
91+
"lib/v1/providers/https"
8992
],
9093
"v1/https": [
9194
"./lib/v1/providers/https"
9295
],
9396
"v1/pubsub": [
94-
"./lib/v1/providers/pubsub"
97+
"lib/v1/providers/pubsub"
9598
],
96-
"/v1/remoteConfig": [
97-
"./lib/v1/providers/remoteConfig"
99+
"v1/remoteConfig": [
100+
"lib/v1/providers/remoteConfig"
98101
],
99-
"/v1/storage": [
100-
"./lib/v1/providers/storage"
102+
"v1/storage": [
103+
"lib/v1/providers/storage"
101104
],
102-
"/v1/tasks": [
103-
"./lib/v1/providers/tasks"
105+
"v1/tasks": [
106+
"lib/v1/providers/tasks"
104107
],
105-
"/v1/testLab": [
106-
"./lib/v1/providers/testLab"
108+
"v1/testLab": [
109+
"lib/v1/providers/testLab"
107110
],
108111
"v2": [
109112
"lib/v2"

0 commit comments

Comments
 (0)