From fd6c41bdf1813c8ba7471ce690efdc8a7a11ae80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Jos=C3=A9?= Date: Mon, 14 Oct 2019 08:20:32 -0300 Subject: [PATCH 1/5] Update README.md - Adding missing single quote; - Keeping the standard to the project param configuration. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 27386af8..21588dea 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ modules: [ } }, // The following options are optional: - useOnly: ['auth','firestore','functions','storage','realtimeDb', 'messaging', 'performance', 'analytics], + useOnly: ['auth','firestore','functions','storage','realtimeDb', 'messaging', 'performance', 'analytics'], customEnv: false, functionsLocation: 'us-central1', } @@ -133,7 +133,7 @@ By default, all supported Firebase products are loaded. If you only wish to load Your firebase config snippet. You can retrieve this information from your Firebase project's overview page: -`https://console.firebase.google.com/project/your-project-id/overview` +`https://console.firebase.google.com/project//overview` ```js { From 6c8e1aaa6e7aad71e7e59e1f6a6e14521d1e23b1 Mon Sep 17 00:00:00 2001 From: Pascal Date: Thu, 17 Oct 2019 13:44:21 +0800 Subject: [PATCH 2/5] updated to version 2.2.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 58850236..cf9094f1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nuxt-fire", - "version": "2.1.0", + "version": "2.2.0", "license": "MIT", "description": "Intergrate Firebase into your Nuxt project.", "main": "index.js", From 121f7c265851a3f025687c770e5912f3dd4dcd3e Mon Sep 17 00:00:00 2001 From: Pascal Date: Thu, 17 Oct 2019 13:47:22 +0800 Subject: [PATCH 3/5] updated readme --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 21588dea..f0fc71c6 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,11 @@ **Important:** This module is meant for easy and quick set-up of Firebase in a Nuxt project. Due to the nature of this module, it is possibly not optimal for websites that need to be super performant and/or SEO friendly, since the module adds the Firebase services to the global scope. If you wan't your website to be more performant, you'd probably be better off by importing the services only in the files where you need them (i.e. by NOT using this module). That being said, the difference might be marginal depending on your project. +_Features_ + +- Helps to easily setup Firebase and makes it available throughout your nuxt app +- Dynamically imports individual Firebase services for a faster page load + ## Demo [Demo](https://nuxt-fire-demo.firebaseapp.com/) From bc142705d7b27337365b16de0867036ebfdaf853 Mon Sep 17 00:00:00 2001 From: Pascal Date: Thu, 17 Oct 2019 13:48:41 +0800 Subject: [PATCH 4/5] updated readme --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f0fc71c6..984a1872 100644 --- a/README.md +++ b/README.md @@ -14,10 +14,10 @@ **Important:** This module is meant for easy and quick set-up of Firebase in a Nuxt project. Due to the nature of this module, it is possibly not optimal for websites that need to be super performant and/or SEO friendly, since the module adds the Firebase services to the global scope. If you wan't your website to be more performant, you'd probably be better off by importing the services only in the files where you need them (i.e. by NOT using this module). That being said, the difference might be marginal depending on your project. -_Features_ +## Features -- Helps to easily setup Firebase and makes it available throughout your nuxt app -- Dynamically imports individual Firebase services for a faster page load +- Helps to easily setup Firebase and makes it **available throughout your Nuxt.js app** +- Dynamically imports individual Firebase services for a **faster page load** ## Demo From 32e514ff9b73cd644db7a20735a3e0c6626273a4 Mon Sep 17 00:00:00 2001 From: Pascal Date: Sat, 19 Oct 2019 13:12:07 +0800 Subject: [PATCH 5/5] update to 2.2.1 and updateed peerDeps --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index cf9094f1..afa9b824 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nuxt-fire", - "version": "2.2.0", + "version": "2.2.1", "license": "MIT", "description": "Intergrate Firebase into your Nuxt project.", "main": "index.js", @@ -16,6 +16,6 @@ }, "peerDependencies": { "nuxt": "^2.10.1", - "firebase": "^7.2.0" + "firebase": "^7.2.1" } }