From 8eaae40e2ee55eee0969e9fca01a1f7b84cdee73 Mon Sep 17 00:00:00 2001 From: Bryan Klimt Date: Tue, 10 Oct 2017 16:07:21 -0700 Subject: [PATCH] Update README files to fix names of packages. --- packages/database/README.md | 6 +++--- packages/firestore/README.md | 6 +++--- packages/messaging/README.md | 6 +++--- packages/storage/README.md | 6 +++--- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/packages/database/README.md b/packages/database/README.md index ed06f1210e5..b330ce01da9 100644 --- a/packages/database/README.md +++ b/packages/database/README.md @@ -1,6 +1,6 @@ # `@firebase/database` -This is the realtime database component for the Firebase JS SDK. It has a peer +This is the realtime database component for the Firebase JS SDK. It has a peer dependency on the [`@firebase/app`](https://npm.im) package on NPM. This package is included by default in the [`firebase`](https://npm.im/firebase) wrapper package. @@ -24,7 +24,7 @@ below: import firebase from '@firebase/app'; import '@firebase/database' -// Do stuff w/ `firebase` and `firebase.auth` +// Do stuff w/ `firebase` and `firebase.database` ``` **CommonJS Modules** @@ -33,7 +33,7 @@ import '@firebase/database' const firebase = require('@firebase/app').default; require('@firebase/database'); -// Do stuff with `firebase` and `firebase.auth` +// Do stuff with `firebase` and `firebase.database` ``` ## Documentation diff --git a/packages/firestore/README.md b/packages/firestore/README.md index fa7c90743b3..fc746f0de04 100644 --- a/packages/firestore/README.md +++ b/packages/firestore/README.md @@ -1,6 +1,6 @@ # `@firebase/firestore` -This is the realtime database component for the Firebase JS SDK. It has a peer +This is the Firestore component for the Firebase JS SDK. It has a peer dependency on the [`@firebase/app`](https://npm.im) package on NPM. This package **is not** included by default in the [`firebase`](https://npm.im/firebase) wrapper package. @@ -24,7 +24,7 @@ below: import firebase from '@firebase/app'; import '@firebase/firestore' -// Do stuff w/ `firebase` and `firebase.auth` +// Do stuff w/ `firebase` and `firebase.firestore` ``` **CommonJS Modules** @@ -33,7 +33,7 @@ import '@firebase/firestore' const firebase = require('@firebase/app').default; require('@firebase/firestore'); -// Do stuff with `firebase` and `firebase.auth` +// Do stuff with `firebase` and `firebase.firestore` ``` ## Documentation diff --git a/packages/messaging/README.md b/packages/messaging/README.md index f93fd9d1722..9d8f553702b 100644 --- a/packages/messaging/README.md +++ b/packages/messaging/README.md @@ -1,6 +1,6 @@ # `@firebase/messaging` -This is the authentication component for the Firebase JS SDK. It has a peer +This is the messaging component for the Firebase JS SDK. It has a peer dependency on the [`@firebase/app`](https://npm.im) package on NPM. This package is included by default in the [`firebase`](https://npm.im/firebase) wrapper package. @@ -24,7 +24,7 @@ below: import firebase from '@firebase/app'; import '@firebase/messaging' -// Do stuff w/ `firebase` and `firebase.auth` +// Do stuff w/ `firebase` and `firebase.messaging` ``` **CommonJS Modules** @@ -33,7 +33,7 @@ import '@firebase/messaging' const firebase = require('@firebase/app').default; require('@firebase/messaging'); -// Do stuff with `firebase` and `firebase.auth` +// Do stuff with `firebase` and `firebase.messaging` ``` ## Documentation diff --git a/packages/storage/README.md b/packages/storage/README.md index bb8bdc35ffc..e31b8002e57 100644 --- a/packages/storage/README.md +++ b/packages/storage/README.md @@ -1,6 +1,6 @@ # `@firebase/storage` -This is the authentication component for the Firebase JS SDK. It has a peer +This is the storage component for the Firebase JS SDK. It has a peer dependency on the [`@firebase/app`](https://npm.im) package on NPM. This package is included by default in the [`firebase`](https://npm.im/firebase) wrapper package. @@ -24,7 +24,7 @@ below: import firebase from '@firebase/app'; import '@firebase/storage' -// Do stuff w/ `firebase` and `firebase.auth` +// Do stuff w/ `firebase` and `firebase.storage` ``` **CommonJS Modules** @@ -33,7 +33,7 @@ import '@firebase/storage' const firebase = require('@firebase/app').default; require('@firebase/storage'); -// Do stuff with `firebase` and `firebase.auth` +// Do stuff with `firebase` and `firebase.storage` ``` ## Documentation