Skip to content

Commit

Permalink
Support Safari 9. (#701)
Browse files Browse the repository at this point in the history
Replaces usage of `const` with `var` in the ESM export.
  • Loading branch information
simonness authored Nov 30, 2020
1 parent 7844a2e commit 6525220
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 @@ -78,7 +78,7 @@ const CJS_DEPS = [
const ESM_IMPORT = ESM_DEPS.join(';') + ';';

// Export firebaseui.auth module.
const ESM_EXPORT = 'const auth = firebaseui.auth;' +
const ESM_EXPORT = 'var auth = firebaseui.auth;' +
'export { auth } ;';

// Adds the cjs module requirement and exports firebaseui.
Expand Down

0 comments on commit 6525220

Please sign in to comment.