Skip to content

Commit 39230c6

Browse files
authored
fix: update ES6 firebase/app import
Updates import from: `import * as firebase from 'firebase/app'` to `import firebase from 'firebase/app'`
1 parent 02996d4 commit 39230c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gulpfile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ const MDL_COMPONENTS = [
6464

6565
// The external dependencies needed by FirebaseUI as ES module imports.
6666
const ESM_DEPS = [
67-
'import * as firebase from \'firebase/app\'',
67+
'import firebase from \'firebase/app\'',
6868
'import \'firebase/auth\'',
6969
'import dialogPolyfill from \'dialog-polyfill\'',
7070
].concat(MDL_COMPONENTS.map(component => `import \'material-design-lite/src/${component}\'`));

0 commit comments

Comments
 (0)