I'm trying to deploy on AWS Lambda a node.js package containing full-icu.
On my development machine i have node v10.14.2 but on Lambda node version is v8.10.
I believe this brings me to the error could not initialize ICU (check NODE_ICU_DATA or --icu-data-dir parameters), since the icudt*.dat file will be for a different node version.
Is there a way to force full-icu to install the dat file for a specific node version?
I'm trying to deploy on AWS Lambda a node.js package containing
full-icu
.On my development machine i have node
v10.14.2
but on Lambda node version isv8.10
. I believe this brings me to the errorcould not initialize ICU (check NODE_ICU_DATA or --icu-data-dir parameters)
, since the icudt*.dat file will be for a different node version.Is there a way to force
full-icu
to install the dat file for a specific node version?