From 39230c67335b653b376c914d05189e8c87f91004 Mon Sep 17 00:00:00 2001 From: 1amageek Date: Thu, 29 Oct 2020 06:27:28 +0900 Subject: [PATCH] fix: update ES6 firebase/app import Updates import from: `import * as firebase from 'firebase/app'` to `import firebase from 'firebase/app'` --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index d9f6d540..65c2f574 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -64,7 +64,7 @@ const MDL_COMPONENTS = [ // The external dependencies needed by FirebaseUI as ES module imports. const ESM_DEPS = [ - 'import * as firebase from \'firebase/app\'', + 'import firebase from \'firebase/app\'', 'import \'firebase/auth\'', 'import dialogPolyfill from \'dialog-polyfill\'', ].concat(MDL_COMPONENTS.map(component => `import \'material-design-lite/src/${component}\'`));