Skip to content

Commit

Permalink
fix: update ES6 firebase/app import
Browse files Browse the repository at this point in the history
Updates import from:
`import * as firebase from 'firebase/app'`
to
`import firebase from 'firebase/app'`
  • Loading branch information
1amageek authored Oct 28, 2020
1 parent 02996d4 commit 39230c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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}\'`));
Expand Down

0 comments on commit 39230c6

Please sign in to comment.