I use firebaseui, and I need to build it with french localization because the localized versions are not published to npm. My current package.json
looks like this:
"dependencies": {
"firebaseui": "^3.5.2"
}
Is there a way to change it so that firebaseui
is built with build-js-fr
parameter on npm install
?
I use firebaseui, and I need to build it with french localization because the localized versions are not published to npm. My current package.json
looks like this:
"dependencies": {
"firebaseui": "^3.5.2"
}
Is there a way to change it so that firebaseui
is built with build-js-fr
parameter on npm install
?
-
1
Sounds like what you should at the very least also be doing is asking about getting them to publish the localizations so you can
require('firebaseui/fr')
instead of having to build things yourself, on their issue tracker. – Mike 'Pomax' Kamermans Commented Apr 12, 2019 at 14:29 - agreed, unless you'd like to customize the localization, I don't see why you should be building it in the first place. Let's get this published!