From 216864ca9b783cefa6257dd19a11bc621bd5cba1 Mon Sep 17 00:00:00 2001 From: Ryan Brewster Date: Fri, 3 Mar 2017 09:39:20 -0800 Subject: [PATCH] Remove trailing comma from package.json in fcm-notifications/functions This was causing `npm install` to fail for me. --- fcm-notifications/functions/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fcm-notifications/functions/package.json b/fcm-notifications/functions/package.json index 84d09a4dd9..fe5d331af3 100644 --- a/fcm-notifications/functions/package.json +++ b/fcm-notifications/functions/package.json @@ -3,6 +3,6 @@ "description": "Send FCM notifications Firebase Functions sample", "dependencies": { "firebase-admin": "^4.1.1", - "firebase-functions": "https://storage.googleapis.com/firebase-preview-drop/node/firebase-functions/firebase-functions-preview.latest.tar.gz", + "firebase-functions": "https://storage.googleapis.com/firebase-preview-drop/node/firebase-functions/firebase-functions-preview.latest.tar.gz" } }